脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - Python编程中用close()方法关闭文件的教程

Python编程中用close()方法关闭文件的教程

2020-07-06 12:20Python教程网 Python

这篇文章主要介绍了Python编程中用close()方法关闭文件的教程,是Python编程入门中的基础知识,需要的朋友可以参考下

 close()方法方法关闭打开的文件。关闭的文件无法读取或写入更多东西。文件已被关闭之后任何操作会引发ValueError。但是调用close()多次是可以的。

Python自动关闭,当一个文件的引用对象被重新分配给另外一个文件。它使用close()方法来关闭一个文件一个很好的做法。
语法

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

?
1
fileObject.close();

参数

  •     NA

返回值

此方法不返回任何值
例子

下面的例子显示了close()方法的使用

?
1
2
3
4
5
6
7
8
#!/usr/bin/python
 
# Open a file
fo = open("foo.txt", "wb")
print "Name of the file: ", fo.name
 
# Close opend file
fo.close()

当我们运行上面的程序,它会产生以下结果:

?
1
Name of the file: foo.txt

延伸 · 阅读

精彩推荐