代码示例:(标识:demo_python_file_append)
demo_python_file_append.py
f = open("demofile2.txt", "a")
f.write("Now the file has more content!")
f.close()

#open and read the file after the appending:
f = open("demofile2.txt", "r")
print(f.read())
运行结果: