Skip to content

Instantly share code, notes, and snippets.

@cldershem
Created October 22, 2014 18:30
Show Gist options
  • Save cldershem/23622935be67eca8396d to your computer and use it in GitHub Desktop.
Save cldershem/23622935be67eca8396d to your computer and use it in GitHub Desktop.
class LivingBeing(object):
breathes = True
needs_water = True
def cease_living():
pass
class Plant(LivingBeing):
has_eyes = False
has_legs = False
def eats():
pass
class Animal(LivingBeing):
has_eyes = True
has_legs = True
def eats():
pass
def sleeps():
pass
def moves():
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment