# When we use an operator on user-defined objects, Python doesn’t know how to handle it. To make operators work with custom classes, Python provides special methods (also called magic methods).
An operator overloading is the process of making the use of basic arithmetic operators such as +, -, etc. to emulate different operations. As the class objects are not directly mathematically ...