当前位置:   article > 正文

python with open as_python 中关于with...as的用法

python中with open as的用法

python中的with...as类似于try...except......finally...其用法是

with A() as b:

suite

block

其中A是一个类,该类中必须包含两个函数__enter__(),和__exit__()  ,b为函数__enter__()函数的返回值,当执行with A() as b: 时,首先会创建一个A 的一个临时对象,

然后调用__enter__()函数,若__enter__()函数执行出现异常直接终止,并将返回值赋值给b,接着执行suite,若suite中存在异常会中断执行函数__exit__(),

若__exit()__函数返回True,则接着执行block,否者终止,

若不存在异常,执行完suite后,执行函数__exit__(),最后执行block。

类如:

1.

class open:

def __enter__(self):

print 'return'

return 2

def __exit__(self,type,value,traceback):     #若有异常会将异常的信息赋值给exit的参数type,value,traceback,否者为None

return isinstance(value,NameError)   #如果出现NameError返回true

with open() as s:

print s

print e

print 'hello'

print 'nihao'

执行结果:

return

2

nihao

2.

class open:

def __enter__(self):

print 'return'

return 2

def __exit__(self,*args):    #异常的信息以tuple形式赋给args

print args   #隐藏了返回值false

with open() as s:

print s

print e

print 'hello'

print 'nihao'

结果:

return

2

(, NameError("name 'e' is not defined",), )

Traceback (most recent call last):

File "E:\python-workplace\t.py", line 10, in

print e

NameError: name 'e' is not defined

因为exit的返回值为false

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/183210
推荐阅读
相关标签
  

闽ICP备14008679号