demo_python_variables_error.py:
x
 
x = 10
y = "Bill"
print(x + y)
python@w3school.org.cn:/home/python#python demo_python_variables_error.py
TypeError: unsupported operand type(s) for +: 'int' and 'str'