Python覆盖写入文件
a 为追加写入:
# -*- coding:utf-8 -*-
# a 指定打开Python文件的模式,a为追加 r为只读
a=open('test.txt', 'a')
a.write('追加写入')
a.close()
f=open('test.txt', 'r')
print f.read()
Python覆盖写入:
a=open('51dev.com.txt', 'w')
用参数 'w' ,就是覆盖写入文件,以前的文件内容会丢失,写入的时候一定要注意保存原来的文件内容。