<languages />
❮档案方法
您可以在写入文件时清除缓冲区:
f = open("myfile.txt", "a") f.write("Now the file has one more line!") f.flush() f.write("...and another one!")
The flush() 方法清除内部缓冲区。
flush()
file.fileno()
没有参数