最简单的方法就是用traceback
模块,例子:
import traceback
try:
raise Exception('this is exception')
except Exception as e:
traceback.print_exc()
#or
print(traceback.format_exc())
此方法在Python2和Python3都适用,在stackoverflow的原链接中还有很多说到其它方法的答案。
最简单的方法就是用traceback
模块,例子:
import traceback
try:
raise Exception('this is exception')
except Exception as e:
traceback.print_exc()
#or
print(traceback.format_exc())
此方法在Python2和Python3都适用,在stackoverflow的原链接中还有很多说到其它方法的答案。