Result Size:
625 x 571
demo_variables_test.py:
x = 5 y = "John" print(x + y)
x
x
=
5
y
=
"John"
print
(
x
+
y
)
C:\Users\My Name>python demo_variables_test.py
TypeError: unsupported operand type(s) for +: 'int' and 'str'