python 添加文本内容到文件 日期:2017-12-15 12:03:04 人气:1 python 添加文本内容到文件 用a模式(append)打开文件, f = open('test.txt','a') f.write('c1') f.close()