知行编程网知行编程网  2022-12-31 17:30 知行编程网 隐藏边栏  0 
文章评分 0 次,平均分 0.0
导语: 本文主要介绍了关于python with语句的工作原理的相关知识,包括python的循环结构,以及python中的with as这些编程知识,希望对大家有参考作用。

python with 语句是如何工作的


1、说明

(1)上下文管理器对象必须有内置操作符__enter__和__exit__方法。

(2) 当返回对象管理器并在with语句中赋值变量时,会调用__enter__方法。

(3)执行嵌套句,即上述相关代码。

(4)如果有异常消息,会回调__exit__方法,同时携带type、value、traceback三个参数(通过sys.exc_info获取)

(5)在正常执行完成后,还召回__exit__的方法。


2、实例

# exception.pyclass WithContextObject:
    def message(self,args):
        print(args)            def __enter__(self):
        print("execute enter method ..")                return self            def __exit__(self, exc_type, exc_val, exc_tb):
        if exc_type is None:
            print("execute normally...")                else:
            print("raise exception ...")                        return Falsedef test_with():
    with WithContextObject() as context:
        context.message("take message")         if __name__ == '__main__':
    test_with()>>> python exception.py


本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

本文为原创文章,版权归所有,欢迎分享本文,转载请保留出处!

知行编程网
知行编程网 关注:1    粉丝:1
这个人很懒,什么都没写
扫一扫二维码分享