Reference no: EM132198012
Write an Employee class that keeeps data attributes for the forllowing pieces of information: 1.Employee 2.Employee Number
Write a class named production worker that a subclass of the Employee class.
The productionWorker class should keep data attributes for the following information:
*Shift Number(an integer 1 or 2)
*Hourly pay rate
The workday is divided into tow shifts:day and night. The shift attribute will hold an integer value represnting the shift that the employee works.
The day shift is shift 1 and the night shift 2
Write the appropriate accessor and mutator methods for each class.
Once you have written the classes, write a program that creates an object of the productionWorker calss and prompts the user to enter data for each of the object's data attributes.
Store the data in the object and then use the object's accessor methods to retrive it and display it on the creen
Add an __str__method to the productionWorker class that will print the attributes from both calsses in a readable format. In the
main part of the program, create on more ProductionWorker object,assign values to the attributes and print both objects using the print statement.
Note: Please use "python" language