python with as
Posted 布丁的菜园子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python with as相关的知识,希望对你有一定的参考价值。
参考: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的主要内容,如果未能解决你的问题,请参考以下文章