Class Customization and Operator Overloading

Class customization

Class customization allows you to define how a class behaves for specific operations such as printing or accessing attributes.

Customize classes by creating instances methods using special method names (double underscores).

Rich comparison methods overload some common comparison operators.

Rich comparison method

Overloaded operator

__lt__(self, other)

Less than (<)

__le__(self, other)

Less than or equal-to (<=)

__gt__(self, other)

Greater than (>)

__ge__(self, other)

Greater than or equal-to (>=)

__eq__(self, other)

Equal to (==)

__ne__(self, other)

Not equal to (!=)

 

Operator overloading

Operator Overloading allows you to replace the functionality of numeric operators (such as +, -, *, and /) with a method.

For example, you can write an __add__(self, other) method to replace the functionality of the (+) operator.

Use the built-in isinstance() method to handle different object types for the operation.

Method

Description

__add__(self, other)

Add (+)

__sub__(self, other)

Subtract (-)

__mul__(self, other)

Multiply (*)

__truediv__(self, other)

Divide (/)

__floordiv__(self, other)

Floored division (//)

__mod__(self, other)

Modulus (%)

__pow__(self, other)

Exponentiation (**)

__and__(self, other)

"and" logical operator

__or__(self, other)

"or" logical operator

__abs__(self)

Absolute value (abs())

__int__(self)

Convert to integer (int())

__float__(self)

Convert to floating point (float())

Rechercher
Catégories
Lire la suite
Éducation
Unlock Your Potential with Lifelong Learning
In today’s fast-paced, ever-changing world, the concept of lifelong learning has become...
Par Olaim 2024-07-21 19:03:27 0 8KB
Computer Programming
HTML Table Colspan & Rowspan
HTML Table Colspan and Rowspan Colspan and rowspan are attributes used to merge cells in a...
Par HTML PROGRAMMING LANGUAGE 2024-09-06 01:36:07 0 6KB
Éducation
Find scholarships and study in the United States
There are countless scholarships available in the United States, offered by various institutions,...
Par Patswe 2024-08-31 18:45:10 5 6KB
Physics
A'LEVEL PHYSICS SEMINAR 2024
A'LEVEL PHYSICS SEMINAR 2024
Par Expedito 2024-08-13 18:54:14 0 7KB
Technology
Discover How Blockchain is Revolutionizing Data Security
Stay Ahead of the Curve with the Latest in Tech! Discover How Blockchain is Revolutionizing Data...
Par Olaim 2024-07-23 17:21:45 0 10KB