Result Size: 625 x 571
demo_try_except_error.py:
x
 
#This will raise an exception, because x is not defined:
print(x)
C:\Users\My Name>python demo_try_except_error.py
Traceback (most recent call last):
  File "demo_try_except_error.py", line 3, in <module>
    print(x)
NameError: name 'x' is not defined