1. Addition Operator. In Python, the addition operator, +
, is used to sum numbers together.
In the exercise below, start by defining two variables, a=5
and b=3
.
Next, compute their sum and assign it to a third variable, c
.
Finally, use the print()
function to print c
to the console.