位置:首頁 > 腳本語言 > Python教學 > Python file.close()方法

Python file.close()方法

close()方法方法關閉打開的文件。關閉的文件無法讀取或寫入更多東西。文件已被關閉之後任何操作會引發ValueError。但是調用close()多次是可以的。

Python自動關閉,當一個文件的引用對象被重新分配給另外一個文件。它使用close()方法來關閉一個文件一個很好的做法。

語法

以下是close()方法的語法:

fileObject.close();

參數

  • NA

返回值

此方法不返回任何值

例子

下麵的例子顯示了close()方法的使用

#!/usr/bin/python

# Open a file
fo = open("foo.txt", "wb")
print "Name of the file: ", fo.name

# Close opend file
fo.close()

當我們運行上麵的程序,它會產生以下結果:

Name of the file:  foo.txt