W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
demo_python_ref_file_writelines_1.py:
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())
[email protected]
:/home/python#python demo_python_ref_file_writelines_1.py
Hello! Welcome to demofile3.txt
This file is for testing purposes.
Good Luck!See you soon!Over and out.