如何打印异常?
- 论坛
- 如何打印异常?
13 浏览
如何打印异常?
如何打印Python异常?
示例:
try: action() except: print "Unexpected error:", sys.exc_info()[0]
输出:
Unexpected error: <type \'exceptions.TypeError\'>
这对我来说并没有太多的信息。
admin 更改状态以发布 2023年5月21日
如何打印Python异常?
示例:
try: action() except: print "Unexpected error:", sys.exc_info()[0]
输出:
Unexpected error: <type \'exceptions.TypeError\'>
这对我来说并没有太多的信息。