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