对的,这是可能的。
try: ...except FirstException: handle_first_one()except SecondException: handle_second_one()except (ThirdException, FourthException, FifthException) as e: handle_either_of_3rd_4th_or_5th()except Exception: handle_all_other_exceptions()
请参阅:http :
//docs.python.org/tutorial/errors.html
关键字“ as”用于将错误分配给变量,以便稍后可以在代码中更彻底地调查错误。另请注意,在python
3中需要三重异常情况的括号。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)