点击运行
f = open("demofile3.txt", "a") 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())
运行结果