We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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())