![]() ![]() |
| |||||||||
| This page removed for FERPA compliance | ||||||||||
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
class Animal:
def showPleasure(self):
pass
def breathe(self):
print "in out in out"
class Alligator(Animal):
def bite(self):
print "chomp chomp"
class Dog(Animal):
def showPleasure(self):
print "wag wag"
print "lick lick"
class Cat(Animal):
def showPleasure(self):
print "miaow"
print "rub rub"