UDC Python Program Project

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.For this project: Tips: Remember to keep track of input data types when comparing values. input() formats the user?s data as a string, so comparing string data to a number without quotes would produce an error.Do not worry about security, it is irrelevant here. Just focus on the functionality discussed above.Remember to follow the guidelines of good program design. Make sure to use meaningful variable names, include comments as needed, and provide thoughtful output.Example output:C:>python week2.pyABC Inc., Gross Pay Calculator!Enter employee’s name or 0 to quit: NathanEnter hours worked: 35Enter employee’s pay rate: 10.00Employee Name: NathanGross Pay: 350.0Enter next employee’s name or 0 to quit: TobyEnter hours worked: 45Enter employee’s pay rate: 10Employee Name: TobyGross Pay: 475.0(overtime pay: 75.0 )Enter next employee’s name or 0 to quit: 0Exiting program…

× How can I help you?