Employee has to explicitly invoke the parent's _init_ (not init):
class Employee(Person):
def __init__(self):
Person.__init__(self)
self.empnum = 'abc123'
|
3 | added 1 characters in body; added 5 characters in body | ||
|
Employee has to explicitly invoke the parent's _init_ (not init):
|
||||
|
2 | deleted 1 characters in body | ||
|
Employee has to explicitly invoke the parent's _init_ (not init):
|
||||
|
1 |
|
||
|
Employee has to explicitly invoke the parent's _init_ (not init):
|
||||