Python 文件 flush() 方法
示例
您可以在写入文件时清除缓冲区
f = open("myfile.txt", "a")
f.write("现在文件又多了一行!")
f.flush()
f.write("...还有一个!")
运行示例 »
定义和用法
The flush()
方法清除内部缓冲区。
语法
file.flush()
参数值
无参数
您可以在写入文件时清除缓冲区
f = open("myfile.txt", "a")
f.write("现在文件又多了一行!")
f.flush()
f.write("...还有一个!")
运行示例 »
The flush()
方法清除内部缓冲区。
file.flush()
无参数
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]