Try Catch Except
ID | 160 |
---|---|
Link Reference | Not set |
Link Credits | Not set |
Link Technical Documentation | Not set |
PlCodelang | Python |
PlGroup | Exceptions |
PlItemTitle | Try Catch Except |
Code | try: print 1/0 except Exception as e: print traceback.extract_stack() else: print "this is the else block" finally: print "finally clean up or something" |
Result Example |