Coursera---Programming-for-Everybody-Getting-Started-with-Python- icon indicating copy to clipboard operation
Coursera---Programming-for-Everybody-Getting-Started-with-Python- copied to clipboard

Update Week 6- Assignment 4.6

Open shubh84 opened this issue 5 years ago • 0 comments

def computepay(h,r): if h>40: rate1 = (r1.5)(h-40) return ((h-5)*r)+rate1 hrs = float(raw_input("Enter Hours:")) rate = float(raw_input("Enter Rate:")) p = computepay(hrs,rate) print ("pay",p)

shubh84 avatar Oct 18 '20 07:10 shubh84