-
-
Save ZeroRaven/6c82f2c8e2a2dc327f42c9fe858da3c3 to your computer and use it in GitHub Desktop.
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) |
A bit lengthy, but maybe this might work for you!
`def computepay(hrs, rph):
if hrs <= 40:
p = hrs * rph
else:
y = (hrs - 40.0) * (rph*0.5)
x = hrs * rph
p= x+y
return p
Hours=input("Hours: ")
Rate=input("Rate: ")
try:
hrs= float(Hours)
rph= float(Rate)
except:
print("Please enter the correct input")
quit()
print("Pay", computepay(hrs, rph))`
I did a very different way.
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)b1.5
return islem
t = computepay (h,r)
print("Pay",t)
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)
1.5 * r * (h - 40) + (40 *r) from computation , I get different figures , could you please explain how come it gives the 498.75
Put * instead of + between the last two terms
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)
h = float(input('Enter Hours: '))
r = float(input('Enter rate: '))
def computepay(h, r):
if h>40 :
g = (h-40)(r1.5)+(40r)
return g
else :
g = hr
return g
g = computepay(h, r)
print("Pay",g)
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. :)
def computepay(h, r):
if h>40:
p= 1.5 * r * (h - 40) + (40 r)
else:
p = hr
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)
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)
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)
def computepay(h, r):
if h> 40:
p= 40r+(h-40)r1.5
else:
p= hr
return p
hrs = input("Enter Hours:")
hr = float(hrs)
rphs = input("Enter Rate:")
rph = float(rphs)
x = computepay(hr, rph)
print("Pay", x)
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)
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)
# 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)
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)
```
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)
`//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)
`
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)
def computepay(h, r):
if h<40:
pay=hr
else:
pay=(40r)+(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)
def computepay(h,r):
if h>40.0:
p = 40.0r
p = p + (h-40.0)1.5r
else:
p = hr
return p
hrs = input("Enter Hours:")
rate = input("Enter rate:")
h = float(hrs)
r = float(rate)
p = computepay(h,r)
print("Pay", p)
why are we using 1.5 value ?
and if we use p= float()*float() instead compute pay will it affect my output?
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
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)
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)
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)
why are we using 1.5 value ?
It is a good question; I forgot what the question was. :(
def computepay(h,r):
if float(h) > 40:
p = 1.5 * float(r) * (float(h) - 40) + (40 *float(r))
else:
p = float(h) * float(r)
return float(p)
hrs = input("Enter Hours:")
hr = float(hrs)
rphrs = input("Enter rate per hour:")
rphr = float(rphrs)
p = computepay(hrs,rphr)
print("Pay",p)
this code will give you exact result without any error