I\'m trying to access a parent member variable from an extended class. But running the following code...
class Mother(object): def __init__(self): se
You're mixing up class and instance attributes.
print self._haircolor