Advertisement
c0d3dsk1lls

METHOD OVERRIDING CodedSkills.net

Aug 3rd, 2022
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. #METHOD OVERRIDING
  2.  
  3. class Animal:
  4.     def eat(self):
  5.         print("This animal is eating")
  6.  
  7. class Rabbit(Animal):
  8.     def eat(self):
  9.         print("This rabbit is eating a carrot")
  10.  
  11. rabbit = Rabbit()
  12. rabbit.eat()
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement