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