Python中提供了处理Python程序在运行中出现的异常和错误。except语句就是用来捕获异常,并进行相应处理,完整的形式如下:
try:
normal execution block
except A:
exception A handle
except B:
exception B handle
except:
other exception handle
else:
if no exception,get here
finally:
do final handle
其中,else语句块和finally语句块是可选项。
我们把可能发生错误的语句放在try模块里,用except来处理异常。except可以处理一个专门的异常,也可以处理一组圆括号中的异常,如果except后没有指定异常,则默认处理所有的异常。每一个try,都必须至少有一个except,except处理一组异常的例子如下:
try:
a = 10
b = 0
c = a / b
print(c)
except (IOError, ZeroDivisionError) as x: # python 3.x 中必须要有as关键字
print(x)
else:
print("no error")
finally:
print("done")