Skip to content

Instantly share code, notes, and snippets.

@ZeroRaven
Created March 29, 2019 16:50
Show Gist options
  • Star 16 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save ZeroRaven/6c82f2c8e2a2dc327f42c9fe858da3c3 to your computer and use it in GitHub Desktop.
Save ZeroRaven/6c82f2c8e2a2dc327f42c9fe858da3c3 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(p)
@Sanky1010
Copy link

Sanky1010 commented May 30, 2021

image

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)

Note: if you are getting an error, then a simple trick is to align the next line spaces. (for if else, leave 4 spacess like that.. refer image)
100.100% Working. :)

@SandipKurmi
Copy link

git_frist
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")
rat = input("enter rat")
h = float(hrs)
r = float(rat)
p = computepay(h , r)
print ("Pay",p)

@mohameddouma
Copy link

def computepay(h, r):
if h>40:
return 40r +(h-40)r1.5
else:
return h
r

hrs = float(input("Enter Hours:"))
r= float(input("Enter rate per hour:"))
p = computepay(hrs,r)
print("Pay",p)
4 6+

@MohammedSalghi
Copy link

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)
rat= input ("Enter rate per hour:")
rt = float (rat)

p = computepay(hr,rt)
print("Pay",p)

@shrssj
Copy link

shrssj commented Sep 12, 2021

This is without error!
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:")
h = float(hrs)
rate = input("Enter rate per hour:")
r = float(rate)
p = computepay(h,r)
print("Pay",p)

@Dinks68
Copy link

Dinks68 commented Dec 22, 2021

def computepay(hrs, rate):
if hrs > 40:
p = (hrs - 40) * 1.5 * rate + 40 * rate
else:
p = hrs * rate
return p
h = input("Enter Hours:")
hrs = float(h)
r = input("Enter Rate:")
rate = float(r)
p = computepay(hrs, rate)
print("Pay", p)

@ArijitRoy91
Copy link

def computepay(h, r):
if h> 40:
p= 40r+(h-40)r1.5
else:
p= h
r
return p

hrs = input("Enter Hours:")
hr = float(hrs)
rphs = input("Enter Rate:")
rph = float(rphs)

x = computepay(hr, rph)
print("Pay", x)

@careb36
Copy link

careb36 commented Dec 31, 2021

rate = float(input("Enter Rate of Pay:"))
hrs = int(input("Enter Hours:"))

def computepay(hrs, rate):
hasta_cuarenta = 40*rate
if hrs > 40:
excedente = 1.5 * rate * (hrs - 40)
return hasta_cuarenta + excedente

p = computepay(hrs, rate)
print("Pay", p)

@Manoharseervi1999
Copy link

def computepay(h,r):
if h>40:
reg = r * h
otp = (h-40.0)(r0.5)
p = reg + otp

else:
    p = r * h

return p

hrs = input("enter hours:")
hr = float (hrs)
rphrs = input("enter rate:")
rphr = float(rphrs)

p=computepay(hr,rphr)
print('Pay',p)

@bariskayadelen
Copy link

bariskayadelen commented Jan 21, 2022

# Computepay Function
def computepay(h, r) :
    if h <= 40 :
        p = h * r
    else :
        p = (40 * r) + ((h - 40) * r * 1.5)
    return p

# Check input hours
sh = input('Enter Hours: ')
try :
    fh = float(sh)
except :
    print('Error, please enter numeric input')
    quit()

# Check input rate
sr = input('Enter Rate: ')
try :
    fr = float(sr)
except :
    print('Error, please enter numeric input')
    quit()

p = computepay(fh, fr)
print('Pay', p)

@Panthiades
Copy link

def computepay(h, r):
    f_h = float(h)
    f_r = float(r)
    if f_h>40:
        return 1.5*f_r*(f_h-40)+40*f_r
    else:
        return f_h*f_r
#
h = input('HOURS:')
r = input('RATE')
p = computepay(h, r)
print("Pay", p)
```

@sofiamoj
Copy link

def computepay (h,r):
if h > 40:
return 40 * r + (h - 40) * r * 1.5
else:
return h * r

h = input ("Enter hours:")
h= float (h)
r = input ("Enter rate:")
r= float (r)

p = computepay(h,r)

print("Pay",p)

@Deepak2002-singh
Copy link

Deepak2002-singh commented Apr 29, 2022

`//No need to get confused among these many codes, just put this one and get the desired output as same as Coursera is expecting : 👇

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)
`

@MSThedox
Copy link

def computepay(h, r):
return 1.5 * r * (h - 40) + (40 * r) if h > 40 else h * r

hrs = input("Enter Hours:")
hr = float(hrs)
rphrs = input("Enter Rate per hour:")
rphr = float(rphrs)
p = computepay(hr, rphr)
print("Pay", p)

@MaryamFarshbafi
Copy link

MaryamFarshbafi commented Jul 15, 2022

def computepay(h, r):
if h<40:
pay=hr
else:
pay=(40
r)+(h-40) r 1.5

return pay

hrs = input("Enter Hours:")
rate=input("Enter Rate")
h=float(hrs)
r=float(rate)
p = computepay(h, r)
print("Pay", p)

@dienhientran
Copy link

dienhientran commented Sep 5, 2022

def computepay(h,r):
if h>40.0:
p = 40.0r
p = p + (h-40.0)1.5r
else:
p = h
r
return p
hrs = input("Enter Hours:")
rate = input("Enter rate:")
h = float(hrs)
r = float(rate)
p = computepay(h,r)
print("Pay", p)

@Anoyses
Copy link

Anoyses commented Sep 5, 2022

why are we using 1.5 value ?

@Anoyses
Copy link

Anoyses commented Sep 5, 2022

and if we use p= float()*float() instead compute pay will it affect my output?

@Femifelix01
Copy link

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)

this is right answer

Why did you use 1.5 to multiply? I used 0.5 and i got the same answer as yours. Can you please explain?
Thanks

@syedmraza01
Copy link

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)
r = input("Enter Rate :")
rt = float(r)

p = computepay(hr , rt)
print("Pay",p)

@WestonSpiro
Copy link

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:")
h = float(hrs)
rate = input("Enter rate per hour:")
r = float(rate)

p = computepay(h,r)
print("Pay",p)

@xjunio
Copy link

xjunio commented Sep 29, 2022

def compute_pay(r,h):
if h <= 40:
return r * h
elif h >=40:
return 40*r+(h-40)r1.5

fhours = input('Enter hours: ')
try:
hrs = float(fhours)
frate = input('Enter rate: ')
rate = float(frate)
x = compute_pay(rate,hrs)
print(x)

@MaryamFarshbafi
Copy link

why are we using 1.5 value ?

It is a good question; I forgot what the question was. :(

@Okapiafrica
Copy link

def computepay(h,r):
if h <= 40:
return h*r
elif h > 40:
return 40 * r +(h-40) * 1.5 * r

hrs = input("Enter Hours:")
h = float(hrs)
rate = input("Rate")
r = float(rate)

p = computepay(h,r)

print("Pay",computepay(h,r))

@mouminamajeed
Copy link

hrs = input("Saati gir pezo: ") h = float(hrs) hrt = input("Rate kac:") r = float(hrt)

def computepay(a, b): if (a <= 40): islem = a * b elif (a > 40): islem = 40 * b + (a-40)_b_1.5 return islem

t = computepay (h,r)

print("Pay",t)

#worked thnku

@Thyagaraj1
Copy link

Thyagaraj1 commented Nov 26, 2022

#The specific mnemonics are used intentionally
#Not sure multiplication symbol not updating
def computepay(parameter1,parameter2):
if parameter1<=40:
gpay=(argument1argument2)
elif parameter1>40:
gpay=((40
argument2)+(argument1-40)(1.5argument2))
return gpay

argument=input("Enter the hours:")
rargument=input("Enter the rate:")
try :
argument1=float(argument)
argument2=float(rargument)
except :
error=("Please enter the numeric value")
print(error)
quit()
print("pay",computepay(argument1,argument2))

@Frogato
Copy link

Frogato commented Nov 27, 2022

def computepay(h, r):
if h > 40.0:
p = (1.5 * r) * (h - 40.0) + (r * 40.0)
else:
p = r * h
return p

shrs = input('Enter Hours: ')
srate = input('Enter Rate: ')

try:
hours = float(shrs)
rate = float(srate)
except:
print('ERROR, please enter numeric input')
quit()

p = computepay(hours, rate)
print("Pay", p)

@POUL3
Copy link

POUL3 commented Jan 23, 2023

def computepay(hrs, rph):
if hrs > 40:
return(1.5rph(hrs-40)+(40rph))
elif hrs <= 40:
return(hrs
rph)

hrs = input("Enter Hours:")
rph = input("rate per hour")

hr=float(hrs)
rp=float(rph)

p=computepay(hr,rp)
print("Pay",p)

@Swarnendu002
Copy link

For sure this will work out

def computepay(h,r):
if h>40:
reg=40r
otp=(h-40.0)1.5r
pay=reg+otp
else:
pay=h
r

return pay

hrs =input ("Enter Hours:")
rate=input ("Enter Rate per Hour:")
fh= float(hrs)
fr= float(rate)
p = computepay(fh,fr)
print("Pay",p)

@sergejchuchin
Copy link

sergejchuchin commented Mar 14, 2024

try:
def computepay(h, r):
if h>40:
reg=rh
otp=(h-40.0)
(r*0.5)
xp=reg+otp
else:
xp=h+r
return xp

hrs = input("Enter Hours:")
h=float(hrs)
rt = input("Enter rate:")
r=float(rt)
p = computepay(h, r)
print("Pay", p)

except:
print ("bad value")
quit()

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