https://realpython.com/python-multiple-constructors/ - статья про написание нескольких конструкторов для класса
#multiple-constructors #constructor #class
#multiple-constructors #constructor #class
Realpython
Providing Multiple Constructors in Your Python Classes – Real Python
In this step-by-step tutorial, you'll learn how to provide multiple constructors in your Python classes. To this end, you'll learn different techniques, such as checking argument types, using default argument values, writing class methods, and implementing…