demo_variables6.py:
x = y = z = "Orange" print(x) print(y) print(z)
➜ begtut>python demo_variables6.py
Orange
Orange
Orange