Result Size: 625 x 571
demo_ref_keyword_except4.py:
x
 
# (x > 10) will not raise any errors:
x = 1
try:
  x > 10
except NameError:
  print("You have a variable that is not defined.")
except TypeError:
  print("You are comparing values of different type")
else:
  print("The 'Try' code was executed without raising any errors!")
C:\Users\My Name>python demo_keyword_except4.py
The 'Try' code was executed without raising any errors!