-
-
Save yingzhang0897/e5adb88d17795a7ecec7e776a68bb3b1 to your computer and use it in GitHub Desktop.
4.6 Write a program to prompt the user for hours and rate per hour using input to compute gross pay. Pay should be the normal rate for hours up to 40 and time-and-a-half for the hourly rate for all hours worked above 40 hours. Put the logic to do the computation of pay in a function called computepay() and use the function to do the computation.…
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
h = int(input("Enter Hours:")) | |
r = float(input("Enter rate:")) | |
def computepay(h, r): | |
if h <= 40: | |
p=float(h*r) | |
else: | |
p=float(40*r+(h-40)*1.5*r) | |
return p | |
computepay(h,r) | |
print("Pay", computepay(h,r)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment