demo_variables4.py:
x = "Python is " y = "awesome" z = x + y print(z)
➜ begtut>python demo_variables4.py
Python is awesome