Python3 file.flush()方法

2019-10-16 23:09:35
flush()方法重新整理內部緩衝,就像標準輸入fflush。這可能是一些類檔案物件的空操作。

Python關閉它們時自動重新整理檔案。 但你可能要關閉檔案之前重新整理資料。

語法

以下是 flush()方法的語法 -
fileObject.flush()

引數

  • NA

返回值

此方法不返回任何值。

範例

下面的範例說明 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