Get your own Python server Result Size: 625 x 565
x
 
#This will raise an exception, because x is not defined:
print(x)
Traceback (most recent call last):
  File "demo_try_except_error.py", line 3, in <module>
    print(x)
NameError: name 'x' is not defined