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())

Buscar
Categorías
Read More
Educación
Reconstruction (Lecture)
Reconstruction Era (1865-1877) The Reconstruction Era was a period of immense change and...
By Modern American History 2024-07-19 05:37:05 0 3K
Educación
Timeline 1875-1890
1875 A Senate commission meeting with Red Cloud and other Lakota chiefs to negotiate legal...
By Modern American History 2024-08-02 16:29:08 0 3K
Technology
Ethical Code of Conduct
An ethical code of conduct is a set of principles and guidelines designed to help professionals...
By ALAGAI AUGUSTEN 2024-07-16 17:00:57 0 3K
Chemistry
UACE CHEMISTRY PAPER 2 2024
UACE CHEMISTRY PAPER 2 2024
By Landus Mumbere Expedito 2024-08-09 19:53:41 0 3K
Technology
HTML - The Structure of Web Pages
HTML, or HyperText Markup Language, is the standard language used to create and design web pages....
By ALAGAI AUGUSTEN 2024-07-25 19:30:38 0 5K