I\'m new to Python... and coming from a mostly Java background, if that accounts for anything.
I\'m trying to understand polymorphism in Python. Maybe the problem is
Try isinstance(myDog, dog) resp. isinstance(myDog, animal).
isinstance(myDog, dog)
isinstance(myDog, animal)