Adding New Methods In Child Class
Mon 10 August 2026
class Animal:
def sound(self):
print("Some sound")
class Dog(Animal):
def bark(self):
print("Dog barks")
d = Dog()
d.sound()
d.bark()
Some sound
Dog barks
Score: 10
Category: chapter2_inheritance