Question: I need to make a Python code for my intro class. Where can I find specific websites how to code? Your code should output each
I need to make a Python code for my intro class.
Where can I find specific websites how to code?
Your code should output each employees name, ID, pay type, pay rate, hours worked, and the calculated gross pay.
My Output needs to look like this:
=-=-=-=-=-=-=-=-=-= Rec Cnt: 1 name Kelly ID 1 payType H payRate 12.0 hours 32 Gross Pay >> 384.0 =-=-=-=-=-=-=-=-=-= =-=-=-=-=-=-=-=-=-= Rec Cnt: 2 name Jason ID 1 payType S payRate 700.0 hours 40 Gross Pay >> 700.0 =-=-=-=-=-=-=-=-=-= =-=-=-=-=-=-=-=-=-= Rec Cnt: 3 name Alice ID 1 payType S payRate 720.0 hours 40 Gross Pay >> 720.0 =-=-=-=-=-=-=-=-=-= =-=-=-=-=-=-=-=-=-= Rec Cnt: 4 name Debra ID 1 payType H payRate 13.0 hours 19 Gross Pay >> 247.0 =-=-=-=-=-=-=-=-=-= =-=-=-=-=-=-=-=-=-= Rec Cnt: 5 name Gordon ID 1 payType H payRate 12.0 hours 23 Gross Pay >> 276.0 =-=-=-=-=-=-=-=-=-=
name <\t> ID_number <\t> pay <\t> type <\t> pay_rate <\t> hours_worked
The fields are separated by a tab \t delimiter, and they are described as follows:
- name is a string value
- ID_number is a numeric integer value
- pay_type is a character, either H for hourly, or S for salary
- pay_rate either holds the hourly rate for an hourly pay_type, or it holds the total salary for a salary pay_type.
- hours_worked holds the total number of work hours for the employee
The employee gross pay is computed as follows:
If employee pay_type is hourly
gross pay = pay_rate * hours_worked
Else if employee pay_type is salary based
gross pay = pay_rate
Develop a solution for the problem of reading each employees information from the file, computing her gross pay, and then printing out all the employee information along with her gross pay.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
