Multiple Inheritance
Mon 10 August 2026
class Father:
def skill(self):
print("Driving")
class Mother:
def talent(self):
print("Cooking")
class Child(Father, Mother):
pass
c = Child()
c.skill()
c.talent()
Driving
Cooking
Score: 10
Category: chapter3_multiple_inheritance