python multiple constructors
November 18, 2022 ⚊ 1 Min read ⚊ Views 103 ⚊ EDUCATIONConstructor is a special member function provided by python. When the object of the class is created constructor automatically gets called. ‘__init__’ function in python is known as a constructor. Pay attention to two underscores (_) before and after ‘init’. If we don’t create our __init__ method, Python automatically creates one anyway (with no parameter). To know in-depth about constructors we need to deep dive into the ‘self’ keyword.
Read details: https://insideaiml.com/blog/Constructors-in-Python-1185
Tags: Function, multiple, Python