file = open("text.txt", "w")
file.write("Your text goes here")
file.close()
'r'openfor reading (default)
'w'openfor writing, truncating the filefirst'x'openfor exclusive creation, failing if the file already exists'a'openfor writing, appending to the end of the fileif it exists
f = open("demofile3.txt", "w")
f.write("Woops! I have deleted the content!")
f.write(10)
f.close()
#open andread the file after the appending:f = open("demofile3.txt", "r")
print(f.read())
f = open("demofile3.txt", "w")
f.write("Woops! I have deleted the content!")
f.write(10)
f.close()
#open andread the file after the appending:f = open("demofile3.txt", "r")
print(f.read())