怎么在python中关闭已打开的文件 python 关闭打开的文件

主机教程 建站分享 2年前 (2022-12-20) 175次浏览

文章摘要:怎么在python中关闭已打开的文件 python 关闭打开的文件

在python中关闭文件方法有:1.使用close()函数关闭;2.使用with语句关闭;3.使用try-fi […]

在python中关闭文件方法有:1.使用close()函数关闭;2.使用with语句关闭;3.使用try-finally块关闭;

在python中关闭文件方法有以下几种

1.使用close()函数关闭

# 打开文件

fo = open("runoob.txt", "wb")

print "文件名为: ", fo.name

# 关闭文件

fo.close()

2.使用with语句关闭

with open('dog_breeds.txt') as reader:

3.使用try-finally块关闭

reader = open('dog_breeds.txt')

try:

finally:

reader.close()


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:怎么在python中关闭已打开的文件 python 关闭打开的文件
文章链接:http://www.7966.org/post/11669.html
转载请注明出处

喜欢 (0)