gpt4 book ai didi

Python 从异常中获取错误代码

转载 作者:太空宇宙 更新时间:2023-11-03 14:48:31 27 4
gpt4 key购买 nike

在 python 中,我有处理异常并打印错误代码和消息的代码。

try:
somecode() #raises NameError
except Exception as e:
print('Error! Code: {c}, Message, {m}'.format(c = e.code, m = str(e))

但是,e.code 不是获取错误名称 (NameError) 的正确方法,我找不到这个问题的答案。我应该如何获取错误代码?

最佳答案

这对我有用。

  except Exception as e:
errnum = e.args[0]

关于Python 从异常中获取错误代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47723967/

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