此问题在此处已有答案:
Getting exception details in Python(4个答案)
9天前关闭。
我确实收到异常消息,但响应异常消息是TypeError: 'int' object is not subscriptable
。我想要的异常消息类型:
FileName.py or ClassName
[Line Number] Message Exception Message
字符串
我想在try中打印这个除了。
此问题在此处已有答案:
Getting exception details in Python(4个答案)
9天前关闭。
我确实收到异常消息,但响应异常消息是TypeError: 'int' object is not subscriptable
。我想要的异常消息类型:
FileName.py or ClassName
[Line Number] Message Exception Message
字符串
我想在try中打印这个除了。
2条答案
按热度按时间idv4meu81#
我将使用
traceback
模块来帮助获取异常的详细信息,包括文件名、行号和实际的错误消息。举例如下:
字符串
nwnhqdif2#
使用
traceback.print_exc()
字符串