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

1206
2021/4/22 11:57:45
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

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

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

在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()

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: 如何在Python中使用第三方库