Check this out
Opened this issue · 0 comments
Abhishekwagh20 commented
def computepay(h,r):
if h>40:
return (h-40)r1.5+(40r)
else:
return hr
h= float(input("Enter Hours: "))
r=float(input("Enter rate: "))
p = computepay(h,r)
print("Pay",p)
Opened this issue · 0 comments
def computepay(h,r):
if h>40:
return (h-40)r1.5+(40r)
else:
return hr
h= float(input("Enter Hours: "))
r=float(input("Enter rate: "))
p = computepay(h,r)
print("Pay",p)