gpt4 book ai didi

python - python 中的 perror 等效函数

转载 作者:太空狗 更新时间:2023-10-30 03:07:57 25 4
gpt4 key购买 nike

我在 python 中使用 try except block ,当 try block 失败时,如何打印有意义的错误消息。我在 C 中寻找类似 perror() 的东西

最佳答案

>>> try:
... 0/0
... except Exception,e:
... print e.message
...
integer division or modulo by zero

或在 Python 2.6 及更高版本中,e.args,因为 BaseException.message 已被弃用

>>> try:
... 0/0
... except Exception,e:
... print e.args
...
('integer division or modulo by zero',)

关于python - python 中的 perror 等效函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2220038/

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