Python3 traceback error handling

tracebackPackages to be detailed program allelic location of the error, often trywith the process

import traceback

try:
	...
except BaseException as e:
	traceback.print_exc()

Guess you like

Origin blog.csdn.net/yilovexing/article/details/106279325