当前位置:Gxlcms > Python > Python中的异常处理简明介绍

Python中的异常处理简明介绍

时间:2021-07-01 10:21:17 帮助过:17人阅读

python异常处理机制和java类似,采用try-except-finally的结构.

try-except检测异常

格式

代码如下:


try:
try_statement
except (ErrorType1, ErrorType2),e:
handle_statement
finally:
finally_statement


实例
代码如下:


#!/usr/bin/python
try:
a=12
b=0
c = a/b
except Exception, e:
print "Exception occurs: " , e
finally:
print "finally handle!"


上下文管理器(with…as…语句)

with语句可以特别适用于首先打开资源最后释放资源的场景,因为它会自动释放占有的资源,不需要显示地释放资源

格式

代码如下:


with context_expr [as var]:
with_statement


raise引发异常

格式