Operators used to perform basic mathematical operations.
We can list as follows
Name | Operator | Example |
Addition | + | no1 + no2 |
Substraction | – | no1 – no2 |
Multiplication | * | no1 * no2 |
Division | / | no1 / no2 |
Modulus | % | no1 % no2 |
Exponentiation | ** | no1 ** no2 |
Floor Division | // | no1 // no2 |