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

Pesquisar
Categorias
Leia Mais
Business
Why Your Business Needs IT Services
Businesses often hesitate to hire IT services, considering them a high-cost investment. However,...
Por Olaim 2024-07-19 14:20:20 0 9K
Technology
S5 KABS ICT RESOURCE 2023
S5 KABS ICT RESOURCE 2023
Por ICT TUTORIALS 2024-11-16 02:25:05 0 9K
Technology
Computer Viruses
A computer virus is a type of malicious software (malware) designed to replicate itself and...
Por Olaim 2024-07-13 17:32:43 0 6K
Technology
Using the SUM Function in Excel: A Step-by-Step Guide
The SUM function in Excel is a powerful tool used to calculate the total of a range of numbers....
Por Microsoft Excel 2024-09-03 03:17:00 1 6K
Technology
Understanding Trojan Horses
A Trojan Horse, or simply a Trojan, is a type of malicious software that disguises itself as a...
Por Olaim 2024-07-13 17:36:01 0 6K