demo_variables_test.py:
x = 5 y = "John" print(x + y)
➜ begtut>python demo_variables_test.py
TypeError: unsupported operand type(s) for +: 'int' and 'str'