Answers for "how to print type of exception in python"

16

how to print error in try except python

try:
  # some code
except Exception as e:
	print("ERROR : "+str(e))
Posted by: Guest on November-19-2020
9

except as Exception:

>>> def catch():
...     try:
...         asd()
...     except Exception as e:
...         print e.message, e.args
... 
>>> catch()
global name 'asd' is not defined ("global name 'asd' is not defined",)
Posted by: Guest on April-28-2020
1

python try except: print error

except Exception as e:
Posted by: Guest on December-26-2020

Code answers related to "how to print type of exception in python"

Python Answers by Framework

Browse Popular Code Answers by Language