Python3自動關閉檔案的參考物件分配給另一個檔案。 使用 close()方法關閉檔案是一個很好的做法。
fileObject.close()
NA
#!/usr/bin/python3 # Open a file fo = open("foo.txt", "wb") print ("Name of the file: ", fo.name) # Close opened file fo.close()
Name of the file: foo.txt