Is there a way to instantiate a class without calling __init__?
Is there a way to circumvent the constructor __init__ of a class in python?
Is there a way to circumvent the constructor __init__ of a class in python?
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