早教吧 育儿知识 作业答案 考试题库 百科 知识分享

pythonwith...as能举例讲解以下with...有什么用法吗?请生动些,

题目详情
python with...as
能举例讲解以下with...有什么用法吗?
请生动些,
▼优质解答
答案和解析
with open('abc.txt','r') as f:
balabalabala
等价于
try:
f = open('abc.txt','r')
except:
pass
else:
balabalabala
finally:
f.close()
语法是不是简洁多了?