demo_python_variables_error.py:
x
 
x = 10
y = "Bill"
print(x + y)
C:\Users\My Name>python demo_python_variables_error.py
TypeError: unsupported operand type(s) for +: 'int' and 'str'