RosettaCodeData/Task/Inheritance-Single/Python/inheritance-single-1.py
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

14 lines
236 B
Python

class Animal:
pass #functions go here...
class Dog(Animal):
pass #functions go here...
class Cat(Animal):
pass #functions go here...
class Lab(Dog):
pass #functions go here...
class Collie(Dog):
pass #functions go here...