Result Size: 625 x 571
demo_ref_keyword_except.py:
x
 
# (x > 3) will raise an error because x is not defined:
try:
  x > 3
except:
  print("Something went wrong")
print("Even if it raised an error, the program keeps running")
C:\Users\My Name>python demo_keyword_except.py
Something went wrong
Even if it raised an error, the program keeps running