traceback.print_exc() python question

后端 未结 2 1896
一个人的身影
一个人的身影 2021-02-11 09:48

I am using the following line of code in IDLE to print out my traceback in an eception:

traceback.print_exc()

For some reason I get the red text error message, b

2条回答
  •  自闭症患者
    2021-02-11 10:06

    print_exc() prints formatted exception to stderr. If you need string value, call format_exc()

提交回复
热议问题