Class Customization and Operator Overloading

0
12Кб

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

Поиск
Категории
Больше
Chemistry
UCE CHEMISTRY SCORING GUIDE
UCE CHEMISTRY SCORING GUIDE
От Landus Mumbere Expedito 2024-08-10 13:47:53 0 10Кб
Technology
Understanding Information Technology Ethics
Information Technology (IT) ethics is a branch of ethics that focuses on the ethical issues and...
От ALAGAI AUGUSTEN 2024-07-13 07:12:07 0 13Кб
Computer Programming
Floating-Point Numbers and Arithmetic Expressions
Floating-point numbers A floating-point number is a number with a decimal. Ex: 3.14,...
Physics
WAKISSHA UACE PHYSICS PAPER 2 2024
WAKISSHA UACE PHYSICS PAPER 2 2024
От Landus Mumbere Expedito 2024-08-01 18:31:28 1 13Кб
Computer Programming
Intro to Classes and Objects python Show drafts
Classes: The Blueprints Imagine you're building a house. You wouldn't just start hammering and...
Talksphare https://talksphare.com