在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()
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: 如何在Python中使用第三方库