Operator Overloading in Python - GeeksforGeeks (2024)

Operator Overloading means giving extended meaning beyond their predefined operational meaning. For example operator + is used to add two integers as well as join two strings and merge two lists. It is achievable because ‘+’ operator is overloaded by int class and str class. You might have noticed that the same built-in operator or function shows different behavior for objects of different classes, this is called Operator Overloading.

Example

Python3

# Python program to show use of

# + operator for different purposes.

print(1 + 2)

# concatenate two strings

print("Geeks"+"For")

# Product two numbers

print(3 * 4)

# Repeat the String

print("Geeks"*4)

Output

3GeeksFor12GeeksGeeksGeeksGeeks

How to overload the operators in Python?

Consider that we have two objects which are a physical representation of a class (user-defined data type) and we have to add two objects with binary ‘+’ operator it throws an error, because compiler don’t know how to add two objects. So we define a method for an operator and that process is called operator overloading. We can overload all existing operators but we can’t create a new operator. To perform operator overloading, Python provides some special function or magic function that is automatically invoked when it is associated with that particular operator. For example, when we use + operator, the magic method __add__ is automatically invoked in which the operation for + operator is defined.

Overloading binary + operator in Python:

When we use an operator on user-defined data types then automatically a special function or magic function associated with that operator is invoked. Changing the behavior of operator is as simple as changing the behavior of a method or function. You define methods in your class and operators work according to that behavior defined in methods. When we use + operator, the magic method __add__ is automatically invoked in which the operation for + operator is defined. Thereby changing this magic method’s code, we can give extra meaning to the + operator.

How Does the Operator Overloading Actually work?

Whenever you change the behavior of the existing operator through operator overloading, you have to redefine the special function that is invoked automatically when the operator is used with the objects.

For Example:

Code 1:

Python3

# Python Program illustrate how

# to overload an binary + operator

# And how it actually works

class A:

def __init__(self, a):

self.a = a

# adding two objects

def __add__(self, o):

return self.a + o.a

ob1 = A(1)

ob2 = A(2)

ob3 = A("Geeks")

ob4 = A("For")

print(ob1 + ob2)

print(ob3 + ob4)

# Actual working when Binary Operator is used.

print(A.__add__(ob1 , ob2))

print(A.__add__(ob3,ob4))

#And can also be Understand as :

print(ob1.__add__(ob2))

print(ob3.__add__(ob4))

Output

3GeeksFor3GeeksFor3GeeksFor

Here, We defined the special function “__add__( )” and when the objects ob1 and ob2 are coded as “ob1 + ob2“, the special function is automatically called as ob1.__add__(ob2) which simply means that ob1 calls the __add__( ) function with ob2 as an Argument and It actually means A .__add__(ob1, ob2). Hence, when the Binary operator is overloaded, the object before the operator calls the respective function with object after operator as parameter.

Code 2:

Python3

# Python Program to perform addition

# of two complex numbers using binary

# + operator overloading.

class complex:

def __init__(self, a, b):

self.a = a

self.b = b

# adding two objects

def __add__(self, other):

return self.a + other.a, self.b + other.b

Ob1 = complex(1, 2)

Ob2 = complex(2, 3)

Ob3 = Ob1 + Ob2

print(Ob3)

Output

(3, 5)

Overloading comparison operators in Python :

Python3

# Python program to overload

# a comparison operators

class A:

def __init__(self, a):

self.a = a

def __gt__(self, other):

if(self.a>other.a):

return True

else:

return False

ob1 = A(2)

ob2 = A(3)

if(ob1>ob2):

print("ob1 is greater than ob2")

else:

print("ob2 is greater than ob1")

Output:

ob2 is greater than ob1

Overloading equality and less than operators:

Python3

# Python program to overload equality

# and less than operators

class A:

def __init__(self, a):

self.a = a

def __lt__(self, other):

if(self.a<other.a):

return "ob1 is lessthan ob2"

else:

return "ob2 is less than ob1"

def __eq__(self, other):

if(self.a == other.a):

return "Both are equal"

else:

return "Not equal"

ob1 = A(2)

ob2 = A(3)

print(ob1 < ob2)

ob3 = A(4)

ob4 = A(4)

print(ob1 == ob2)

Output:

ob1 is lessthan ob2Not equal

Python magic methods or special functions for operator overloading

Binary Operators:

OperatorMagic Method
+__add__(self, other)
__sub__(self, other)
*__mul__(self, other)
/__truediv__(self, other)
//__floordiv__(self, other)
%__mod__(self, other)
**__pow__(self, other)
>>__rshift__(self, other)
<<__lshift__(self, other)
&__and__(self, other)
|__or__(self, other)
^__xor__(self, other)

Comparison Operators:

OperatorMagic Method
<__lt__(self, other)
>__gt__(self, other)
<=__le__(self, other)
>=__ge__(self, other)
==__eq__(self, other)
!=__ne__(self, other)

Assignment Operators:

OperatorMagic Method
-=__isub__(self, other)
+=__iadd__(self, other)
*=__imul__(self, other)
/=__idiv__(self, other)
//=__ifloordiv__(self, other)
%=__imod__(self, other)
**=__ipow__(self, other)
>>=__irshift__(self, other)
<<=__ilshift__(self, other)
&=__iand__(self, other)
|=__ior__(self, other)
^=__ixor__(self, other)

Unary Operators:

OperatorMagic Method
__neg__(self)
+__pos__(self)
~__invert__(self)

Note: It is not possible to change the number of operands of an operator. For example: If we can not overload a unary operator as a binary operator. The following code will throw a syntax error.

Python3

# Python program which attempts to

# overload ~ operator as binary operator

class A:

def __init__(self, a):

self.a = a

# Overloading ~ operator, but with two operands

def __invert__(self):

return "This is the ~ operator, overloaded as binary operator."

ob1 = A(2)

print(~ob1)

Output

This is the ~ operator, overloaded as binary operator.

operator overloading on Boolean values:

In Python, you can overload the Boolean operators and, or, and not by defining the __and__, __or__, and __not__ special methods in your class.

Here’s an example of how to overload the and operator for a custom class:

Python

class MyClass:

def __init__(self, value):

self.value = value

def __and__(self, other):

return MyClass(self.value and other.value)

a = MyClass(True)

b = MyClass(False)

c = a & b # c.value is False

Explanation:

In this example, we define a MyClass that has a single attribute value, which is a boolean. We then overload the & operator by defining the __and__ method to perform a logical and operation on the value attribute of two MyClass instances.

When we call a & b, the __and__ method is called with a as the first argument and b as the second argument. The method returns a new instance of MyClass with a value attribute that is the logical and of a.value and b.value.

Note that Python also provides built-in boolean operators that can be used with any object. For example, you can use the bool() function to convert any object to a boolean value, and the all() and any() functions to perform logical and and or operations on a sequence of boolean values. Overloading the boolean operators in a custom class can be useful to provide a more natural syntax and semantics for your class.

Advantages:

Overloading boolean operators in a custom class can provide several advantages, including:

  1. Improved readability: By overloading boolean operators, you can provide a more natural syntax and semantics for your class that makes it easier to read and understand.
  2. Consistency with built-in types: Overloading boolean operators can make your class behave more like built-in types in Python, which can make it easier to use and integrate with other code.
  3. Operator overloading: Overloading boolean operators is an example of operator overloading in Python, which can make your code more concise and expressive by allowing you to use familiar operators to perform custom operations on your objects.
  4. Custom behavior: Overloading boolean operators can allow you to define custom behavior for your class that is not available in built-in types or other classes.
  5. Enhanced functionality: By overloading boolean operators, you can add new functionality to your class that was not available before, such as the ability to perform logical and or or operations on instances of your class.

Overall, overloading boolean operators in a custom class can make your code more readable, consistent, concise, expressive, and functional. However, it’s important to use operator overloading judiciously and only when it makes sense for the semantics of your class.

Don't miss your chance to ride the wave of the data revolution! Every industry is scaling new heights by tapping into the power of data. Sharpen your skills, become a part of the hottest trend in the 21st century.Dive into the future of technology - explore the Complete Machine Learning and Data Science Program by GeeksforGeeks and stay ahead of the curve.


Last Updated : 19 Feb, 2023

Like Article

Save Article

Previous

Division Operators in Python

Next

Any All in Python

As an expert in Python programming and operator overloading, I can provide a comprehensive breakdown of the concepts discussed in the article.

Operator Overloading in Python: Operator overloading allows you to give extended meaning beyond the predefined operational meaning of operators. In Python, you can overload operators by defining special methods in your class. The article demonstrates overloading various operators, such as +, <, ==, and boolean operators, and provides insights into how the underlying magic methods work.

Code Examples:

  1. Overloading Binary + Operator:

    • The article shows how to overload the + operator in a custom class (A).
    • The magic method __add__ is defined to change the behavior of the + operator.
    • Example code illustrates the addition of two objects of class A, including handling different data types.
  2. Overloading Comparison Operators:

    • The article demonstrates overloading the > operator in a class (A).
    • The magic method __gt__ is defined to customize the behavior of the > operator.
    • Code examples show the comparison of two objects of class A using the > operator.
  3. Overloading Equality and Less Than Operators:

    • The article presents examples of overloading the < and == operators in a class (A).
    • Magic methods __lt__ and __eq__ are defined for custom behavior.
    • Code examples show the usage of these operators for object comparison.
  4. Python Magic Methods for Operator Overloading:

    • The article lists various magic methods associated with binary, comparison, assignment, and unary operators.
    • These methods, such as __add__, __lt__, __eq__, etc., are automatically invoked when the corresponding operators are used.
  5. Operator Overloading on Boolean Values:

    • The article explains how to overload boolean operators (and, or, not) by defining __and__, __or__, and __not__ methods in a class (MyClass).
    • An example demonstrates overloading the & operator for custom behavior.

Advantages of Operator Overloading:

  • Improved Readability: Operator overloading can make code more readable and understandable.
  • Consistency with Built-in Types: Overloading operators aligns custom classes with built-in types.
  • Custom Behavior: It allows defining custom behavior for operators, enhancing functionality.
  • Enhanced Functionality: Overloading operators can add new functionality to custom classes.

Conclusion: Operator overloading is a powerful feature in Python, enabling developers to customize the behavior of operators for user-defined classes. By understanding and utilizing magic methods, programmers can create more expressive, readable, and feature-rich code. The article provides practical examples and insights into the implementation of operator overloading in Python.

Operator Overloading in Python - GeeksforGeeks (2024)
Top Articles
Latest Posts
Article information

Author: Fredrick Kertzmann

Last Updated:

Views: 6728

Rating: 4.6 / 5 (46 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Fredrick Kertzmann

Birthday: 2000-04-29

Address: Apt. 203 613 Huels Gateway, Ralphtown, LA 40204

Phone: +2135150832870

Job: Regional Design Producer

Hobby: Nordic skating, Lacemaking, Mountain biking, Rowing, Gardening, Water sports, role-playing games

Introduction: My name is Fredrick Kertzmann, I am a gleaming, encouraging, inexpensive, thankful, tender, quaint, precious person who loves writing and wants to share my knowledge and understanding with you.