Answers for "show error type in try except 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
0

error handling in python

try:
  print(x)
except SyntaxError:
  print("There is a SyntaxError in your code")
except NameError:
  print("There is a NameError in your code")
except TypeError:
  print("There is a TypeError in your code")
Posted by: Guest on September-08-2020

Code answers related to "show error type in try except python"

Python Answers by Framework

Browse Popular Code Answers by Language