捕获异常
# 对数字变量使用append操作
a = 123
a.apppend(4)
执行这个程序时,会抛出:
AttributeError: 'int' object has no attribute 'apppend'
我们使用try:except语句进行捕获。
# 捕获异常
a = 123
try:
a.apppend(4)
except AttributeError:
print("数字类型不能使用append操作")
输出结果如下:
数字类型不能使用append操作
捕获多个异常
# 捕获异常
a = 123
try:
# a.apppend(4)
1