Assignment 3.1 | Week-5 | Programming for Everybody (Getting Started with Python) By Coursera

Assignment 3.1 | Week-5 | Programming for Everybody (Getting Started with Python) By Coursera

Coursera
Programming for Everybody (Getting Started with Python)
Week 5
 Assignment 3.1 

 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.

 Input: 

hrs = input("Enter Hours:")
h = float(hrs)
rate = float(input("Enter Rate:"))
if h > 40 :
rate1 = (rate * 1.5) * (h-40)

pay = ((h-5)*rate) + rate1
print (pay)
Assignment 3.1 | Week-5 | Programming for Everybody (Getting Started with Python) By Coursera

Assignment 3.1 | Week-5 | Programming for Everybody (Getting Started with Python) By Coursera



 Output: 
498.75
The above questions are from “Programming for Everybody (Getting Started with Python)” You can discover all the refreshed questions and answers related to this on the “Programming for Everybody (Getting Started with Python) By Coursera” page. If you find the updated questions or answers, do comment on this page and let us know. We will update the answers as soon as possible.


Do Not Only Use These Quizzes For Getting Certificates.You Can Take Help From These Quizzes Answer. All Quizzes & Contents Are Free Of Charge. ✅

If You Want Any Quiz Answers Then Please Contact Us

Leave a Comment