demo_variables7.py:
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