try
:
print
(
"Hello"
)
1
/
0
except
ZeroDivisionError:
"0不能做分母"
finally
"这条代码运行是必须的"
结果:
>>>
Hello
不能做分母
这条代码运行是必须的