python 文件读写
Posted keep
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 文件读写相关的知识,希望对你有一定的参考价值。
读写文件3个步骤
- 调用open()函数,返回一个File对象
- 调用File对象的read()或write()方法
- 调用File对象的close()方法,关闭该文件
读取文件:
- helloFile = open(‘C:\Users\Administrator\Desktop\url.txt‘)
- helloContent = helloFile.read()
- helloFile.close()
写入文件
- helloFile = open(‘C:\Users\Administrator\Desktop\url.txt‘, ‘w‘)
- helloFile.write(‘Hello world! ‘)
- helloFile.close()
以上是关于python 文件读写的主要内容,如果未能解决你的问题,请参考以下文章