Created
July 20, 2020 14:24
-
-
Save som983/ede9385ea6ea7be56a6b2b8b4a911d92 to your computer and use it in GitHub Desktop.
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. The…
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
def computepay(h,r): #defining the computepay function | |
if h>40: | |
p=(1.5*(h-40)*r)+(40*r) | |
else: | |
p=40*r | |
return p | |
# taking input | |
hrs =input("Enter Hours:") | |
h=float(hrs) | |
rate =input("Enter rate per hour:") | |
r=float(rate) | |
p = computepay(h,r) #using the function to compute the value | |
print("Pay",p) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment