📜  Python 文件写入 - Python 代码示例

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

代码示例6
f = open("demofile3.txt", "w")
f.write("Woops! I have deleted the content!")
f.close()

#open and read the file after the appending:
f = open("demofile3.txt", "r")
print(f.read())