Python檔案flush()
方法用於重新整理內部緩衝區,就像stdio
的fflush
一樣。關閉它們時,Python會自動重新整理檔案。但有時您可能希望在關閉任何檔案之前就要重新整理資料。
語法
以下是flush()
方法的語法 -
fileObject.flush()
引數
返回值
範例
以下範例顯示了flush()
方法的用法。
#!/usr/bin/python3
# Open a file
fo = open("foo.txt", "wb")
print ("Name of the file: ", fo.name)
# Here it does nothing, but you can call it with read operation.
fo.flush()
# Close opend file
fo.close()
執行上面程式碼後,將得到以下結果 -
Name of the file: foo.txt