python 添加文本内容到文件
发布网友
发布时间:2022-04-20 08:05
我来回答
共5个回答
热心网友
时间:2022-04-18 05:15
用a模式(append)打开文件,
f = open('test.txt','a')
f.write('c1')
f.close()追问请教下 c1 = 123456
怎么换行写入a.txt
就是第一次执行 写入一行
第二次执行写入第二行
追答f.write(str(c1)+"\n")
热心网友
时间:2022-04-18 06:33
执行的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( "</table>" )
if pos != -1:
content = content[:pos] + contentadd + content[pos:]
file = open( "test.html", "w" )
file.write( content )
file.close()
print "OK"
热心网友
时间:2022-04-18 08:08
f = file('a.txt','a') #open for 'a'ppending
fi.write(c1)
f.close
#打开python的IDE,可以用help(file)查看file的内容
#有r、w、a,即读、写、附加3中追问请教下 c1 = 123456
怎么换行写入a.txt
就是第一次执行 写入一行
第二次执行写入第二行
热心网友
时间:2022-04-18 09:59
open第二个参数修改为追加就可以啦追问请教下 c1 = 123456
怎么换行写入a.txt
就是第一次执行 写入一行
第二次执行写入第二行
追答write 和 writelines 有什么区别我忘记了
你可以加/n 还是\n 来着去换行
热心网友
时间:2022-04-18 12:07
f = open('test.txt','a')