导语:
本文主要介绍了关于python with语句的工作原理的相关知识,包括python的循环结构,以及python中的with as这些编程知识,希望对大家有参考作用。
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电脑。
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ python是汇编语言吗?08/29
- ♥ 如何判断一个变量是否是python中的整数08/28
- ♥ python高并发怎么解决12/13
- ♥ python3中哪个库可以实现格式美化?12/07
- ♥ 如何在python中初始化一个数组08/23
- ♥ python中for和while有什么区别09/06
内容反馈