Advertisement
Temitop

Untitled

Apr 1st, 2020
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | None | 0 0
  1.     def __init__(self):
  2.         self.owner = "Boris"
  3.  
  4.     def exclaim(self):
  5.         return "I'm defined in the superclass!"
  6.  
  7. class HardwareStore(Store):
  8.     pass
  9.  
  10. home_depot = HardwareStore()
  11.  
  12. print(home_depot.owner)
  13. print(home_depot.exclaim())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement