• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

Python基础教程之with、contextlib的实例用法详解

python 搞代码 4年前 (2022-01-09) 33次浏览 已收录 0个评论

这篇文章主要介绍了Python中with及contextlib的用法,结合实例形式较为详细的分析了with及contextlib的功能、使用方法与相关注意事项,需要的朋友可以参考下

本文实例讲述了Python中with及contextlib的用法。分享给大家供大家参考,具体如下:

平常Coding过程中,经常使用到的with场景是(打开文件进行文件处理,然后隐式地执行了文件句柄的关闭,同样适合socket之类的,这些类都提供了对with的支持):

with file('test.py','r') as f :  print f.readline()

with的作用,类似try…finally…,提供一种上下文机制,要应用with语句的类,其内部必须提供两个内置函数__enter__以及__exit__。前者在主体代码执行前执行,后则在主体代码执行后执行。as后面的变量,是在__enter__函数中返回的。通过下面这个代码片段以及注释说明,可以清晰明白__enter__与__exit__的用法:

#!encoding:utf-8class echo :  def output(self) :    print 'hello world'  def __enter__(self):    print 'enter'    return self #返回自身实例,当然也可以返回任何希望返回的东西  def __exit__(self, exception_type, exception_value, exception_traceback):    #若发生异常,会在这里捕捉到,可以进行异常处理    print 'exit'    #如果改__exit__可以处理改异常则通过返回True告知该异常不必传播,否则返回False    if exception_type == ValueError :      return True    else:      return Falsewith echo() as e:  e.output()  print 'do something inside'print '-----------'with echo() as e:  raise ValueError('value error')print '-----------'with echo() as e:  raise Exception('can not detect')

运行结果:

contextlib是为了加强with语句,提供上下文机制的模块,它是通过Generator实现的。通过定义类以及写__enter__和__exit__来进行上下文管理虽然不难,但是很繁琐。contextlib中的contextmanager作为装饰器来提供一种针对函数级别的上下文管理机制。常用框架如下:

from contextlib import contextmanager@contextmanagerdef make_context() :  print 'enter'  try :    yield {}  except RuntimeError, err :    print 'error' , err  finally :    print 'exit'with make_context() as value :  print value

contextlib还有连个重要的东西,一个是nested,一个是closing,前者用于创建嵌套的上下文,后则用于帮你执行定义好的close函数。但是nested已经过时了,因为with已经可以通过多个上下文的直接嵌套了。下面是一个例子:

from contextlib import contextmanagerfrom contextlib import nestedfrom contextlib import closing@contextmanagerdef make_context(name) :  print 'enter', name  yield name  print 'exit', namewith nested(make_context('A'), make_context('B')) as (a, b) :  print a  print bwith make_context('A') as a, make_context('B') as b :  print a  print bclass Door(object) :  def open(self) :    print 'Door is opened'  def close(self) :    print 'Door is closed'with closing(Door()) as door :  door.open()

运行结果:

总结:python有很多强大的特性,由于我们平常总习惯于之来源gaodai#ma#com搞@代~码$网前C++或java的一些编程习惯,时常忽略这些好的机制。因此,要学会使用这些python特性,让我们写的python程序更像是python。

以上就是Python基础教程之with、contextlib的实例用法详解的详细内容,更多请关注搞代码gaodaima其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:Python基础教程之with、contextlib的实例用法详解

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址