Arithmetic Operations

OperationOperatorExampleValue
Addition+2 + 35
Subtraction-2 - 3-1
Multiplication*2 * 36
Division/7 / 32.66667
Remainder%7 % 31
Exponentiation**2 ** 0.51.41421

Python uses the order of operations - PEMDAS

5 * 2 ** 3 # 40  
(5 * 2) ** 3 # 1000