Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #METHOD OVERRIDING
- class Animal:
- def eat(self):
- print("This animal is eating")
- class Rabbit(Animal):
- def eat(self):
- print("This rabbit is eating a carrot")
- rabbit = Rabbit()
- rabbit.eat()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement