Skip to content

Instantly share code, notes, and snippets.

@KKarthikeya
Created August 16, 2015 04:15
Show Gist options
  • Save KKarthikeya/c7efd076bb2c66859d6f to your computer and use it in GitHub Desktop.
Save KKarthikeya/c7efd076bb2c66859d6f to your computer and use it in GitHub Desktop.
Write a program to prompt the user for hours and rate per hour using raw_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 raw_input to read a string and…
hours = float(raw_input("Enter Hours:"))
rate = float(raw_input("Enter Pay rate per hour:"))
if hours>40.0 :
pay = rate*40
pay = pay+(1.5*rate*(hours-40))
else :
pay = rate*hours
print pay
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment