一个 try 块包含多个 except
- 2025-03-26 09:09:00
- admin 原创
- 17
问题描述:
except
在Python中,一个语句可以有多个语句吗try
?如:
try:
#something1
#something2
except ExceptionType1:
#return xyz
except ExceptionType2:
#return abc
对于以相同方式处理多个异常的情况,请参阅在一行中捕获多个异常(except 块)
解决方案 1:
是的,有可能。
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 中需要三重异常情况的括号。此页面有更多信息:在一行中捕获多个异常(except 块)
解决方案 2:
嵌套 try except 也可以起作用。
我发现上述解决方案很难实现,而且我只遇到了一个额外的异常。
try:
1/0
except:
try:
1/0
except:
1/1
相关推荐
热门文章
项目管理软件有哪些?
热门标签
云禅道AD