Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. class Reference(object):
  2. # common functionality here
  3.  
  4. class Fruit(object):
  5. # common functionality here
  6.  
  7. class Apple(Fruit):
  8. class Ref(Reference):
  9. # specific functionality here
  10.  
  11. class Orange(Fruit):
  12. class Ref(Reference):
  13. # specific functionality here
  14.  
  15. # like 6 more fruits
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement