demo_variables3.py:
x = "Python" y = "is" z = "awesome" print(x, y, z)
C:\Users\My Name>python demo_variables3.py
Python is awesome