📜  如何使用 python 代码示例查看和编辑文件

📅  最后修改于: 2022-03-11 14:45:30.123000             🧑  作者: Mango

代码示例1
#write
f = open('helloworld.txt','wb')
f.write('hello world')
f.close()

#read
f = open('helloworld.txt','r')
message = f.read()
print(message)
f.close()