本篇文章介绍python覆盖写入,追加写入的方法 追加写入: # -*- coding:utf-8 -*-# a 指定打开文件的模式,a为追加 r为只读a=open(test.txt, a)a.write(追加写入)a.close() f=open(test.txt, r)print f.read() 覆盖写入: a=open(test.txt, w)
本篇文章介绍python覆盖写入,追加写入的方法 追加写入:
覆盖写入:
|
2019-06-18
2019-07-04
2021-05-23
2021-05-27
2021-05-27