022Python路--异常
Posted 5014sy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了022Python路--异常相关的知识,希望对你有一定的参考价值。
try: except ValueError: except (ZeroDivisionError,ValueError): except Exception as result: print(result) else:#没有异常执行 finally:#无论有无异常都执行
#异常的传递性
def f():
pass
def test():
return f()
try:
test()
except Exception as result:
print(result)
以上是关于022Python路--异常的主要内容,如果未能解决你的问题,请参考以下文章