ScanSkill

+ (addition)

This + (addition) arithmetic operator returns the sum of the two expressions.

Syntax

A + B

Here, A and B are called operands and '+' is an addition operator.

  • A: An expression that is evaluating to a numeric type.
  • B: An expression that is evaluating to a numeric type.

Examples

>>> 5 + 2
7
>>> 10.0 + 3
13.0