Python Payroll Program

A local small business has hired you to write a payroll calculation program. The program only needs to calculate gross pay for an employee and display the results. Your program will accept the employee’s name, hours worked, and the employee’s pay rate. The program will need to calculate overtime as well. Overtime is defined as anything over 40 hours is paid at 1.5 times the regular pay. The program should print the employee’s name, the gross pay amount, and only if there was overtime, print the overtime pay amount as well. Finally, the program should repeat as necessary until the user enters a sentinel value.

Example output:

C:\>python program.py

ABC Inc., Gross Pay Calculator!

Enter employee's name or 0 to quit: Tom

Enter hours worked: 35

Enter employee's pay rate: 10.00

Employee Name: Tom

Gross Pay: 350.0

Enter next employee's name or 0 to quit: Luke

Enter hours worked: 45

Enter employee's pay rate: 10

Employee Name: Luke

Gross Pay: 475.0

(overtime pay: 75.0 )

Enter next employee's name or 0 to quit: 0

Exiting program...

Need a custom answer at your budget?

This assignment has been answered 2 times in private sessions.

© 2024 Codify Tutor. All rights reserved