Get your own Python server Result Size: 625 x 565
x
 
f = open("demofile3.txt", "a")
f.writelines(["See you soon!", "Over and out."])
f.close()
#open and read the file after the appending:
f = open("demofile3.txt", "r")
print(f.read())
Hello! Welcome to demofile2.txt
This file is for testing purposes.
Good Luck!See you soon!Over and out.