Python - Inheritance and Code Reuse
Which of the following is the correct syntax to call a parent class method
greet inside a child class method in Python?greet inside a child class method in Python?super() is a function and must be called with parentheses before accessing methods.super().greet(), not super.greet() or others.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions