1.

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) In these statements any error would be see ,please help me to change the error.

Answer»

<P>Answer:

p= h*r

Explanation:

HRS = input (" Enter rate PER hour :")



Discussion

No Comment Found