Python/ref file flush

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python File flush()方法

❮档案方法

您可以在写入文件时清除缓冲区:

    f = open("myfile.txt", "a")
f.write("Now the file has one more line!")

    f.flush()
f.write("...and another one!")

定义和用法

The flush() 方法清除内部缓冲区。

句法

file.fileno()
  

参数值

没有参数

❮档案方法