Result Size: 625 x 571
demo_ref_keyword_except3.py:
x
 
# (x/0) raises a ZeroDivisionError:
try:
  x = 1/0
except NameError:
  print("You have a variable that is not defined.")
except TypeError:
  print("You are comparing values of different type")
except:
  print("Something else went wrong")
C:\Users\My Name>python demo_keyword_except3.py
Something else went wrong