python 添加文本内容到文件

添加文件内容(赋值为c1) 到 a.txt的最后一行不要覆盖以前的内容
2024-11-18 06:59:54
推荐回答(5个)
回答1:

用a模式(append)打开文件,
f = open('test.txt','a')
f.write('c1')
f.close()

回答2:

执行的python脚本:

#!/usr/local/python  
# coding=UTF-8  
import os  
  
file = open( "test.html", "r" )  
fileadd = open("test.txt","r")  
content = file.read()  
contentadd = fileadd.read()  
file.close()  
fileadd.close()  
pos = content.find( "" )  
if pos != -1:  
        content = content[:pos] + contentadd + content[pos:]  
        file = open( "test.html", "w" )  
        file.write( content )  
        file.close()  
        print "OK"

回答3:

f = file('a.txt','a') #open for 'a'ppending
fi.write(c1)
f.close

#打开python的IDE,可以用help(file)查看file的内容
#有r、w、a,即读、写、附加3中

回答4:

open第二个参数修改为追加就可以啦

回答5:

f = open('test.txt','a')