Python - Output Variables
Output Variables
The Python print statement is often used to output variables.
To combine both text and a variable, Python uses the + character:
You can also use the + character to add a variable to another variable:
For numbers, the + character works as a mathematical operator:
If you try to combine a string and a number, Python will give you an error:

