What Are Arithmetic Operators in Python?

Arithmetic operators are symbols that perform mathematical calculations on numeric values (operands). These operators add, subtract, multiply, divide, and perform other numeric operations in a Python program. Python supports several arithmetic operators with familiar math behavior. 

OperatorNameDescriptionExampleOutput
+AdditionAdds two values10 + 515
-SubtractionSubtracts second value from first10 - 55
*MultiplicationMultiplies two values10 * 550
/DivisionReturns result in decimal10 / 33.3333...
//Floor DivisionReturns integer part only10 // 33
%ModulusReturns remainder10 % 31
**ExponentPower operator2 ** 38
1. Addition Operator - ' + ' : 
                   Add two values

2. Subtraction Operator - ' - ' : 

                  Subtract two values

3. Multiplication Operator - ' * ' : 

                  Multiply two values

4. Division Operator - ' / ' :

                   Division always returns a float value, even if divisible. If divided by 0, it shows error. 

5. Floor Division - ' // ' :

                   Returns only the integer part of division i.e, Quotient part of the division

6. Modulus Operator - ' % ' :

                   Returns the remainder of division.

7. Exponent Operator - ' ** ' :

                    Used to calculate power