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路--异常的主要内容,如果未能解决你的问题,请参考以下文章

022day--python 模块介绍和time模块

Python022--递归

高德地图获取道路接口并将道路绘制

022_IO流

022Python深浅拷贝

022Python深浅拷贝