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('test.txt', 'w')
用参数 'w' ,就是覆盖写入文件,以前的文件内容会丢失,写入的时候一定要注意保存原来的文件内容。
本文地址:https://my.lmcjl.com/file/overwrite
版权声明:个人博客原创文章,转载请注明出处和网址。
,欢迎加入。
本文链接:https://my.lmcjl.com/post/2827.html
展开阅读全文
4 评论