Lesson 4: Arithmetic Operators | Python Beginner Course 2025 🐍

 


    In this lesson, we'll learn about arithmetic operators in python. Arithmetic operators are used to perform mathematical calculations. Below I will list some of them.


+ Addition - Used to add numbers

- Subtraction - Used to subtract numbers

* Multiplication - Used to multiply numbers

/ Division - used to divide numbers

// Floor division - divides and rounds down answer to nearest whole number

** Exponentiation - use exponents

% Modulo - find remainder of division