Skip to content

Instantly share code, notes, and snippets.

@hareom284
Created July 16, 2020 09:06
Show Gist options
  • Save hareom284/4916b2c17eda4a1b4bda54e59adab672 to your computer and use it in GitHub Desktop.
Save hareom284/4916b2c17eda4a1b4bda54e59adab672 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.…
def computepay(h,r):
if h>40 :
return 40 * r + (h-40)*r*1.5
hrs = input("Enter Hours:")
rate = input("Enter rate")
try :
hrs = float(hrs)
rate = float(rate)
except :
print("Please Enter Valid Value")
quit()
p = computepay(hrs,rate)
print("Pay",p)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment