Python - Inheritance and Code Reuse
Which keyword is required to call the parent class method from an overridden method in Python?
Which keyword is required to call the parent class method from an overridden method in Python?
super() to refer to the parent class inside child methods.super() in overridden methodssuper().method() runs the parent class's version of the method.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions