python_variables_3.py:
x
 
x = "Bill"
print(x)
#double quotes are the same as single quotes:
x = 'Bill'
print(x)