kkalog

Untitled

Jul 21st, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. class American(object):
  2.   def __init__(self):
  3.     pass
  4.  
  5. class NewYorker(American):
  6.   def __init__(self):
  7.     pass
  8.    
  9. anAmerican = American()
  10. aNewYorker = NewYorker()
  11. print anAmerican
  12. print aNewYorker
Advertisement
Add Comment
Please, Sign In to add comment