python get classes inheriting from class code example
Example: how to inherit a class in python
class Bird():
def eat(self):
print ("eating")
class Sparrow(Bird):
def sound(self):
print ("ChiChi!")
birdobj = Sparrow()
birdobj.eat()
birdobj.sound()