demo_variables6.py:
x = y = z = "Orange" print(x) print(y) print(z)
C:\Users\My Name>python demo_variables6.py
Orange
Orange
Orange