gpt4 book ai didi

python - 如何在Python中打印异常?

转载 作者:行者123 更新时间:2023-12-01 23:28:39 26 4
gpt4 key购买 nike

try:
something here
except:
print('the whatever error occurred.')


如何在我的 except:块中打印错误/异常?

最佳答案

对于Python 2.6和更高版本以及Python 3.x:

except Exception as e: print(e)


对于Python 2.5及更早版本,请使用:

except Exception,e: print str(e)

关于python - 如何在Python中打印异常?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58298765/

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