show/hide this revision's text 3 added 1 characters in body; added 5 characters in body

Employee has to explicitly invoke the parent's _init_ (not init):

 class Employee(Person):  
    def __init__(self):  
         Person.__init__(self)  
         self.empnum = 'abc123'  
show/hide this revision's text 2 deleted 1 characters in body

Employee has to explicitly invoke the parent's _init_ (not init):

class Employee(Person): 
    def _init_(self): 
            Person._init_(self) 
            _init__(self): 
        Person.__init__(self) 
        self.empnum = 'abc123' 
show/hide this revision's text 1

Employee has to explicitly invoke the parent's _init_ (not init):

class Employee(Person): def _init_(self): Person._init_(self) self.empnum = 'abc123'