f.writelines(["\nSee you soon!", "\nOver and out."])
f.close()
#open and read the file after the appending:
f=open("demofile3.txt", "r")
print(f.read())
python@w3school.org.cn:/home/python#python demo_python_ref_file_writelines_2.py Hello! Welcome to demofile3.txt
This file is for testing purposes.
Good Luck!
See you soon!
Over and out.