Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class American(object):
- def __init__(self):
- pass
- class NewYorker(American):
- def __init__(self):
- pass
- anAmerican = American()
- aNewYorker = NewYorker()
- print anAmerican
- print aNewYorker
Advertisement
Add Comment
Please, Sign In to add comment