Get your
own Python
server
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
f = open("demofile2.txt", "a") f.write("\nSee you soon!") f.close() #open and read the file after the appending: f = open("demofile2.txt", "r") print(f.read())
Hello! Welcome to demofile2.txt
This file is for testing purposes.
Good Luck!
See you soon!