python文件的写入
Posted huaweitman
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python文件的写入相关的知识,希望对你有一定的参考价值。
wirte()方法把字符串写入文件,writelines()方法可以把列表中存储的内容写入文件。
f=file("hello.txt","w+")
li=["hello world\\n","hello china\\n"]
f.writelines(li)
f.close()
文件的内容:
hello world
hello china
write()和writelines()这两个方法在写入前会清除文件中原有的内容,再重新写入新的内容,相当于“覆盖”的方法。如果需要保留文件中原有的内容,只是需要追加新的内容,可以使用“a+”模式
打开文件。
f=file("hello.txt","a+")
new_context="goodbye"
f.write(new_content)
f.close()
此时hello.txt中的内容如下所示:
hello world
hello china
goodbye
实践:
>>> f=file("hello.txt","w+")
>>> li=["hello world\\n","hello china\\n"]
>>> f.writelines(li)
>>> f.close()
>>>
>>> f=file("hello.txt","a+")
>>> new_context="goodbye"
>>> f.write(new_content)
>>> f.write(new_content)
>>> f.close()
结果:
hello world
hello china
goodbyegoodbye
以上是关于python文件的写入的主要内容,如果未能解决你的问题,请参考以下文章