Python with用法实例
python中with可以明显改进代码友好度,比如:
withopen('a.txt')asf:
printf.readlines()
为了我们自己的类也可以使用with,只要给这个类增加两个函数__enter__,__exit__即可:
>>>classA:
def__enter__(self):
print'inenter'
def__exit__(self,e_t,e_v,t_b):
print'inexit'
>>>withA()asa:
print'inwith'
inenter
inwith
inexit
另外python库中还有一个模块contextlib,使你不用构造含有__enter__,__exit__的类就可以使用with:
>>>fromcontextlibimportcontextmanager >>>from__future__importwith_statement >>>@contextmanager ...defcontext(): ... print'enteringthezone' ... try: ... yield ... exceptException,e: ... print'withanerror%s'%e ... raisee ... else: ... print'withnoerror' ... >>>withcontext(): ... print'----incontextcall------' ... enteringthezone ----incontextcall------ withnoerror
使用的最多的就是这个contextmanager,另外还有一个closing用处不大
fromcontextlibimportclosing
importurllib
withclosing(urllib.urlopen('http://www.python.org'))aspage:
forlineinpage:
printline
热门推荐
10 喜得孙子祝福语简短唯美
11 婚礼祝福语简短朴实大众
12 员工周年祝福语大全简短
13 家长回复节日祝福语简短
14 简短生日祝福语老同学
15 夜雨祝福语简短10字
16 蛋糕祝福语简短闺蜜
17 部门过年祝福语简短独特
18 简短精炼的结婚祝福语