文件操作
Posted evatan123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件操作相关的知识,希望对你有一定的参考价值。
打开已经并关闭存在的文件:
data = open(‘C:\example‘, ‘r‘).read() print(data) data_1 = open(‘C:\小重山‘,‘r‘,encoding = ‘utf-8‘).read() print(data_1)
data.close()
data_1.close()
创建一个文件:
file = open(‘C:\小重山2‘,‘w‘, encoding = ‘utf-8‘) file.write(‘hello world!‘)
file.close()
以上是关于文件操作的主要内容,如果未能解决你的问题,请参考以下文章