Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started