Python 3 - 文件 close() 方法

  • 描述

    方法close()关闭打开的文件。无法再读取或写入已关闭的文件。任何需要打开文件的操作都会在文件关闭后引发ValueError。允许多次调用 close()。
    当一个文件的引用对象被重新分配给另一个文件时,Python 会自动关闭一个文件。最好使用 close() 方法关闭文件。
  • 句法

    以下是语法close()方法 -
    
    fileObject.close()
    
  • 参数

    NA
  • 返回值

    此方法不返回任何值。
  • 例子

    以下示例显示了 close() 方法的用法。
    
    #!/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