How to call Base Class’s __init__ method from the child class?
If I have a python class as: class BaseClass(object): #code and the init function of the base class And then I define a child class such as: class ChildClass(BaseClass): #here I want to call the init function of the base class If the init function of the base class takes some arguments that I am … Read more