Answers for "python error codes"

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
4

print type of exception python

try:
    someFunction()
except Exception as ex:
    template = "An exception of type {0} occurred. Arguments:\n{1!r}"
    message = template.format(type(ex).__name__, ex.args)
    print (message)
Posted by: Guest on July-13-2020
0

syntax error in python

# You did something wrong look in your code dummy!
Posted by: Guest on October-09-2021

Python Answers by Framework

Browse Popular Code Answers by Language