码迷,mamicode.com
首页 > 编程语言 > 详细

python with as

时间:2016-03-24 12:56:00      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:

参考:http://zhoutall.com/archives/325

开了文件就得关,

 

用 with as 就省了 finally

try:
    with open( "a.txt" ) as f :
        do something
except xxxError:
    do something about exception

with-as表达式极大的简化了每次写finally的工作,这对保持代码的优雅性是有极大帮助的。

python with as

标签:

原文地址:http://www.cnblogs.com/pudding-ai/p/5314788.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!