About Cacher
Web App
Download
Sign In
Sign Up
menu
Cacher is the code snippet organizer for pro developers
We empower you and your team to get more done, faster
Learn More
james-l
2/1/2017 - 2:14 AM
share
Share
add_circle_outline
Save
如何使用python的traceback
如何使用python的traceback
use traceback.py
content_copy
file_download
import traceback try: a = 1 / 0 except: print str(traceback.format_exc())
clear