Python Operator Overloading
In this tutorial you will learn:
- Operator Overloading
- Operator Overloading in Python
- Overloading Addition Operator
- Overloading Subtraction Operator
- Overloading Multiplication Operator
Operator Overloading
Sometimes we want to modify the functionality of the common operators such as ‘+, -, * and /‘ and we can do that through a concept known as Operator Overloading. So Operator Overloading allows us to extend the functionality of that operator.
Operator Overloading in Python