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