Result Size: 625 x 571
demo_variables7.py:
x
 
x = "John"
print(x)
#double quotes are the same as single quotes:
x = 'John'
print(x)
C:\Users\My Name>python demo_variables7.py
John
John