| + | Addition
|
| - | Subtraction
|
| * | Multiplication
|
| / | Division
|
| % | Integer division (divide and return the integer part of the
result) |
| // | Remainder (divide and return the remainder—not
modulo,
because the result can be negative)
|
| ** | Exponentiation (raise a number to a whole-number power)
|
| Prefix - | Same as the subtraction:
0 - number
|
| Prefix + | Same as the addition:
0 + number
|
Say 5+5 --> 10
Say 8-5 --> 3
Say 5*2 --> 10
Say 6/2 --> 3
Say 9//4 --> 1
Say 9%4 --> 2
Say 2**3 --> 8
Say +5 --> 5 /* Prefix + */
Say -5 --> -5 /* Prefix - */