Perform mathematical calculations such as:
2. subtraction, e.g. 3 - 2
3. multiplication, e.g. 3 * 2
4. float division, e.g. 3 / 2
5. integer division, e.g. 3 // 2 (returns an integer)
6. exponentiation, e.g. 3 ** 2 (raise 1st number to power of 2nd)
7. modulus, e.g. 3 % 2 (remainder after dividing 1st number by 2nd)
Results are usually assigned to variables, e.g. result = 3 + 2.