gpt4 book ai didi

python - 如何获取在 Python 中捕获的异常的名称?

转载 作者:IT老高 更新时间:2023-10-28 21:08:11 25 4
gpt4 key购买 nike

如何获取 Python 中引发的异常的名称?

例如,

try:
foo = bar
except Exception as exception:
name_of_exception = ???
assert name_of_exception == 'NameError'
print "Failed with exception [%s]" % name_of_exception

例如,我正在捕获多个(或全部)异常,并希望在错误消息中打印异常的名称。

最佳答案

这里有几种不同的方法来获取异常类的名称:

  1. 类型(异常).__name__
  2. exception.__class__.__name__
  3. exception.__class__.__qualname__

例如,

try:
foo = bar
except Exception as exception:
assert type(exception).__name__ == 'NameError'
assert exception.__class__.__name__ == 'NameError'
assert exception.__class__.__qualname__ == 'NameError'

关于python - 如何获取在 Python 中捕获的异常的名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18176602/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com