Home » Backend » Python » + (addition)
This + (addition) arithmetic operator returns the sum of the two expressions.
+
A + B
Here, A and B are called operands and '+' is an addition operator.
'+'
>>> 5 + 2 7 >>> 10.0 + 3 13.0