Python - Polymorphism and Dynamic Behavior
In Python, if a child class overrides a method but still wants to use the parent class's version inside it, which keyword is used?
super() function to call a method from the parent class inside the child class.super().method_name() runs the parent's method.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions