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

Python 的with、语句

时间:2016-02-18 15:09:50      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:

1、使用 with 语句操作文件对象
        
with open(r‘somefileName‘) as somefile:
        for line in somefile:
            print line
            # ...more code
这里使用了 with 语句,不管在处理文件过程中是否发生异常,都能保证 with 语句执行完毕后已经关闭了打开的文件句柄。如果使用传统的 try/finally 范式,则要使用类似如下代码:
2、try/finally 方式操作文件对象

somefile = open(r‘somefileName‘) try: for line in somefile: print line # ...more code finally: somefile.close()

Python 的with、语句

标签:

原文地址:http://www.cnblogs.com/fengyr/p/5198202.html

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