This question already has an answer here:
How to get Exception Detail in Python3
(1个答案)
5年前关闭。
我有一些读取失败时抛出此错误的代码:
类型为“ builtin_function_or_method”的对象没有len()
我想找到代码中的哪一行导致了这一点。这打印在except语句中:
(1个答案)
5年前关闭。
我有一些读取失败时抛出此错误的代码:
类型为“ builtin_function_or_method”的对象没有len()
我想找到代码中的哪一行导致了这一点。这打印在except语句中:
except Exception, err:
print "Unable to read data"
print err
最佳答案
使用traceback模块,您可以执行以下操作:
try:
# your code here
except:
import traceback
traceback.print_exc()
关于python - 显示异常(exception)错误的位置,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17949240/
10-12 21:52