Skip to content

Instantly share code, notes, and snippets.

@bhartimeena
Forked from ZeroRaven/4.6.py
Last active October 2, 2020 15:41
Show Gist options
  • Save bhartimeena/cdeb80128bdc865aea508595a3474e2a to your computer and use it in GitHub Desktop.
Save bhartimeena/cdeb80128bdc865aea508595a3474e2a 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:
p = 1.5 * r * (h - 40) + (40 *r)
else:
p = h * r
return p
hrs = input("Enter Hours:")
hr = float(hrs)
rphrs = input("Enter rate per hour:")
rphr = float(rphrs)
p = computepay(hr,rphr)
print('Pay',p)
@bhartimeena
Copy link
Author

it's work 100%

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment