Result Size: 625 x 571
demo_variables1.py:
x
 
x = 5
y = "John"
print(x)
print(y)
C:\Users\My Name>python demo_variables1.py
5
John