这篇文章主要介绍了python文件怎么读取和写入的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇python文件怎么读取和写入文章都会有所收获,下面我们一起来看看吧。
1、读取,read()方法返回文件中保存的字符串。
readlines()方法,从文件中获取字符串列表。列表中的每个字符串是文本中的每一行。
>>> helloContent = file.read()>>> helloContent'Hello world!'
2、写入,把w作为第二个参数传递给open(),在写作模式下打开文件,就可以通过write()的方式将内容写入文件。
w模式将删除文件的原始内容并重写。
如果不想删除原始内容,可以通过a模式将内容添加到文件中。
>>> baconFile = open('bacon.txt', 'w')>>> baconFile.write('Hello world!\n')13>>> baconFile.close()>>> baconFile = open('bacon.txt', 'a')>>> baconFile.write('Bacon is not a vegetable.')25>>> baconFile.close()>>> baconFile = open('bacon.txt')>>> content = baconFile.read()>>> baconFile.close()>>> print(content)Hello world!Bacon is not a vegetable.
关于“python文件怎么读取和写入”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“python文件怎么读取和写入”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注编程网行业资讯频道。