python的异常处理
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python的异常处理相关的知识,希望对你有一定的参考价值。
语法:
try:
try_suite
except Exception1: #只捕获特定的异常
suite1_exception1
except Exception2,e: #捕获所列的异常和其额外的数据
suite2_exception2
except (Exception3,Exception4): #捕获任何列出的异常
suite34_exception24
except (Exception5,Exception6 ......),e: #捕获任何列出的异常,并取得其额外数据
suite56_exception.....
........
except: #捕获所有(其他)异常类型
suite_exception
else: #如果没有引发异常,就运行
else_suite
finally: #总是会运行此代码块
finally_suite
以上是关于python的异常处理的主要内容,如果未能解决你的问题,请参考以下文章
PCL异常处理:pcl 1.8.13rdpartyoostincludeoost-1_64oost ypeofmsvc ypeof_impl.hpp(125): error(代码片段