What Is Inheritance
Mon 10 August 2026
class Animal:
def eat(self):
print("Animal is eating")
class Dog(Animal):
pass
d = Dog()
d.eat() # Inherited method
Animal is eating
Score: 10
Category: chapter2_inheritance
class Animal:
def eat(self):
print("Animal is eating")
class Dog(Animal):
pass
d = Dog()
d.eat() # Inherited method
Animal is eating
Score: 10
Category: chapter2_inheritance