demo_python_file_write.py:
x
 
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())
python@w3school.org.cn:/home/python#python demo_python_file_write.py
Woops! I have deleted the content!