Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to print error in try except python

try:
  # some code
except Exception as e:
	print("ERROR : "+str(e))
 
PREVIOUS NEXT
Tagged: #print #error #python
ADD COMMENT
Topic
Name
3+5 =