Question: thats how far I was able to get and now im stuck in a syntax error in line 18, Please help me finish this assignment.

 thats how far I was able to get and now im

stuck in a syntax error in line 18, Please help me finish

this assignment. This lab provides experience with object oriented programming (O0P) using

thats how far I was able to get and now im stuck in a syntax error in line 18, Please help me finish this assignment.

This lab provides experience with object oriented programming (O0P) using Python. You will write a small Python program to manage employee information for the ABC Communications Company. Part 1 For this lab you will program the Employee class as presented in the assigned videos. 1. Open IDLE and create new file 2. Save the file as lab3. 3. Add comment block with the name of the lab, your name, today's date. 4. Create class Employee. 5. Create two class attributes; num-of employees = 0 and raise amounts 1.04 6. define the initializer with parameters self, first, last, pay, and title .04 a. the initializer will set the objects first, last, pay, and title attributes to values passed to the initializer at the time of instantiation b. Set the email attribute to first.last@abccomm.com. c. Set the status attribute to regular. d. Increment the num_of_employees by one. 7. Define method fullname that uses self.first and self.last to return a formatted string of the employees first and last name. 8. Define method apply_raise to set an objects pay to current pay *raise_ammount. 9. Define method fire that sets the status of an object to fired, email to " and pay to 0.0. 10. Define method retire that sets the status of an object to retired. 11. Define method fullrec that will return an employee's full record as a string. Example: print fmp1.fullrect() produces Frank Smith Frank. Smithabccomm.com 52000 Asst. Mgr regular Part 2 1. In the main body of the program instantiate three employee objects with the following attributes: First name Last name Pay Frank Sally Bonnie Smith Jones Milne 50000 60000 120000 Title Asst. Mgr Mgr Engineer EmeLeblee. num-of-employees

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!