how to print error in except python code example
Example 1: how to print error in try except python
try:
# some code
except Exception as e:
print("ERROR : "+str(e))
Example 2: 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)
Example 3: try except python
try:
print("I will try to print this line of code")
except ERROR_NAME:
print("I will print this line of code if error ERROR_NAME is encountered")
Example 4: python exception
try:
# code block
except ValueError as ve:
print(ve)
Example 5: catch error data with except python
import sys
try:
S = 1/0 #Create Error
except: # catch *all* exceptions
e = sys.exc_info()
print(e) # (Exception Type, Exception Value, TraceBack)
############
# OR #
############
try:
S = 1/0
except ZeroDivisionError as e:
print(e) # ZeroDivisionError('division by zero')
Example 6: try python
try:
print("I will try to print this line of code")
except:
print("I will print this line of code if an error is encountered")