Coursera Assignment 4.6 Python Functions
def computepay ( h , r ): if (h<= 40 ): pay=(h*r) elif (h> 40 ): …
def computepay ( h , r ): if (h<= 40 ): pay=(h*r) elif (h> 40 ): …
hrs= float ( input ( "Enter Hours:" )) rph= float ( input ( "Enter rate per hour:&…
score= float ( input ( "Enter the score:" )) if (score>= 0.9 and score<= 1.0 ): …