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

Write in PYTHON 3 only Thank You Suppose class Person is the

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!