demo_syntax_variables.py:
x = 5 y = "Hello, World!" print(x) print(y)
➜ begtut>python demo_syntax_variables.py
5
Hello, World!