Get your
own Python
server
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
f = open("demofile3.txt", "w") f.write("Woops! I have deleted the content!") f.close() #open and read the file after the overwriting: f = open("demofile3.txt", "r") print(f.read())
Woops! I have deleted the content!