Question: Write in PYTHON 3 only Thank You Suppose class Person is the parent of class Employee. Complete the following code: class Person: def _init_(self, first,
Write in PYTHON 3 only

Thank You
Suppose class Person is the parent of class Employee. Complete the following code: class Person: def _init_(self, first, last): self.firstname = first self.lastname = last def Name(self): return self.firstname + " " + self.lastname class Employee(Person): def _init_(self, first, last, staffnum): """Intialzie firstnames and lastname, staffnumber """ # write your code here def GetEmployee(self): """Return Employee's Name(firstnames and lastname) and staffnumber""" # write your code here x = Person("Marge", "Simpson") y = Employee("Homer", "Simpson", "1007") print(x.Name()) print(y.GetEmployee())
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
