Skip to the content.

Object oriented programming

Source: Corey Schafer, Youtube, GitHub code

Part 2

Python docs: Special methods

Text representation

When we call the print statement, Python first looks for the __str__ method defined in your class before falling back on the __repr__ method.

Math

Python docs: Numeric types

Context manager

RealPython article

Alternative constructor

Getter_setter

@property decorator