Python traceback 模块,追踪错误

import traceback

try:

  your code

except:

  traceback.print_exc()

05-11 09:38