반응형

try exception을 할 때 터미널에서 프린트하고싶을때가 있습니다.

import traceback
try:
	...
except:
	traceback.print_exc()

위와 같이 하시면 됩니당

반응형

+ Recent posts