demo_variables1.py:
x = 5 y = "John" print(x) print(y)
➜ begtut>python demo_variables1.py
5
John