Verwenden Sie ein Modul namens Traceback
import traceback try: hoge() except: print traceback.format_exc()
Recommended Posts