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.
Answers
Answer:
The data was originally published by Harrison, D. and Rubinfeld, D.L. `Hedonic prices and the demand for clean air', J. Environ. Economics & Management, vol.5, 81-102, 1978.
Dataset Naming
The name for this dataset is simply boston. It has two prototasks: nox, in which the nitrous oxide level is to be predicted; and price, in which the median value of a home is to be predicted
Miscellaneous Details
-Origin
The origin of the boston housing data is Natural.
-Usage
This dataset may be used for Assessment.
-Number of Cases
The dataset contains a total of 506 cases.
-Order
The order of the cases is mysterious.
Answer:
hrs = input("Enter Hours:")
h = float(hrs)
xx = input("Enter the Rate:")
x = float(xx)
if h <= 40:
print( h * x)
elif h > 40:
print(40* x + (h-40)*1.5*x)
Explanation:
print(40* x + (h-40)1.5x) is correct if you will put those values 45 and 10.50 when questions will come on the top)))))) I HOPE IT WILL HELP YOU