f = open("input.txt", "w") f.write("aaaaaa") f.flush() #强行把缓冲区中的内容放到磁盘中 s = input("请输入回车键") f.close() 当没有输入回车键时,数据也依然写入到文件中,如果没有flush()方法的话,那么只有按下回车键才会把数据保存到文件中 输出结果: [email protected]:~/zengsf$ python3 exercise822.py 请输入回车键
原文地址:https://www.cnblogs.com/zengsf/p/9520843.html
时间: 2024-10-17 03:30:11