Below are list of arithmetic operators used in python for mathematical operations.
| Arithmetic Operators | Description |
| + | Addition |
| – | Subtraction |
| * | Multiplication |
| / | Division( Quotient will be Float) |
| // | Floor Division(Quotient will be integer part of result) |
| % | Return Remainder of Division |
| ** | Square root of a Number or x raise to power n |