Programming for everybody ( Python) Assignment 3.1

Coursera Assignment 3.1
Week 5
Question:-
3.1 Write a program to prompt the user for hours and rate per hour using input to compute gross pay. Pay the hourly rate for the hours up to 40 and 1.5 times the hourly rate for all hours worked above 40 hours. Use 45 hours and a rate of 10.50 per hour to test the program (the pay should be 498.75). You should use input to read a string and float() to convert the string to a number. Do not worry about error checking the user input - assume the user types numbers properly.

Solution:-

hrs = input("Enter Hours:")
h = float(hrs)
r=input ("enter time")
rate=float(r)
if (h>40):
 rate1 = (rate * 1.5) * (h-40)    
pay = ((h-5)*rate) + rate1

print(pay)




Official website for Coursera:
https://www.coursera.org/learn/python

Comments

Popular posts from this blog

Python data structures: Assignment 7.1

Python data structure: Assignment 8.4

Programming for everybody (Python) Assignment 5.2

Coursera:Web application technologies and Django