Archived
1
0
Fork 0
This repository has been archived on 2024-05-10. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
PY4E/Assignment 3.1
Michael Loveys bb326fbd0a inital commit
2021-09-08 10:33:48 -05:00
..
main.py inital commit 2021-09-08 10:33:48 -05:00
readme.md inital commit 2021-09-08 10:33:48 -05:00

Write a program to prompt the user for hours and rate per hour using input to compute gross pay. Pay the hourly rate for the hours up to 40 and 1.5 times the hourly rate for all hours worked above 40 hours. Use 45 hours and a rate of 10.50 per hour to test the program (the pay should be 498.75). You should use input to read a string and float() to convert the string to a number. Do not worry about error checking the user input - assume the user types numbers properly.