Python with语句原理及用法详细解析是怎样的?

2026-05-22 02:351阅读0评论SEO资源
  • 内容介绍
  • 文章标签
  • 相关推荐

本文共计353个文字,预计阅读时间需要2分钟。

Python with语句原理及用法详细解析是怎样的?

使用`with`语句理解与用法概述,包括`with`后面的object一起,达到了抛出异常和单独生成一个空间,让代码在该空间内运行的效果。

实验代码:pythonclass A: def __init__(self): self.a=0

def __enter__(self): print('enter')

with 用法理解

Overview

with 与with之后的object一起,起到了抛出异常和单独生成一个空间让代码在空间里运行的效果。

实验代码

class A: def __init__(self): self.a = 0 def __enter__(self): print('enter') def __exit__(self, exc_type, exc_val, exc_tb): print('exit') if __name__ == '__main__': a = A() with a: print('first step') print(1/0) print('last setp') print('continue running') print('continue running') print('continue running') print('continue running')

上述代码输出结果为

enter
first step
exit
ZeroDivisionError: division by zero

代码理解

根据上述代码的测试结果可以看出:

with语句先运行,with之后对象的__enter__()方法

然后运行with空间的代码

1.1. 当with空间代码出错后,会直接运行__exit__()方法,然后抛出异常

Python with语句原理及用法详细解析是怎样的?

1.2 当with空间代码没有错误时,程序按顺序__enter()__>> 逻辑语句>>exit()>>之后的代码继续运行

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持易盾网络。

本文共计353个文字,预计阅读时间需要2分钟。

Python with语句原理及用法详细解析是怎样的?

使用`with`语句理解与用法概述,包括`with`后面的object一起,达到了抛出异常和单独生成一个空间,让代码在该空间内运行的效果。

实验代码:pythonclass A: def __init__(self): self.a=0

def __enter__(self): print('enter')

with 用法理解

Overview

with 与with之后的object一起,起到了抛出异常和单独生成一个空间让代码在空间里运行的效果。

实验代码

class A: def __init__(self): self.a = 0 def __enter__(self): print('enter') def __exit__(self, exc_type, exc_val, exc_tb): print('exit') if __name__ == '__main__': a = A() with a: print('first step') print(1/0) print('last setp') print('continue running') print('continue running') print('continue running') print('continue running')

上述代码输出结果为

enter
first step
exit
ZeroDivisionError: division by zero

代码理解

根据上述代码的测试结果可以看出:

with语句先运行,with之后对象的__enter__()方法

然后运行with空间的代码

1.1. 当with空间代码出错后,会直接运行__exit__()方法,然后抛出异常

Python with语句原理及用法详细解析是怎样的?

1.2 当with空间代码没有错误时,程序按顺序__enter()__>> 逻辑语句>>exit()>>之后的代码继续运行

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持易盾网络。