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 中秋商务祝福语简短最新
16 温暖文艺简短祝福语短句
17 男孩上学祝福语简短的
18 入住酒店文案祝福语简短