Skip to content

Instantly share code, notes, and snippets.

@fmobus
Created October 2, 2013 13:23
Show Gist options
  • Save fmobus/6793678 to your computer and use it in GitHub Desktop.
Save fmobus/6793678 to your computer and use it in GitHub Desktop.
class Animal:
def vocalize(self):
print 'my vocalization'
class Cat(Animal):
def vocalize(self):
print 'meow'
class Dog(Animal):
def vocalize(self):
print 'woof woof'
zoo = [ Cat(), Dog(), Dog(), Cat(), Animal() ]
for animal in zoo:
animal.vocalize()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment