From 7da96d200793562d3c9261ca4b92f44e9969404c Mon Sep 17 00:00:00 2001 From: kumarsammi3 <72184473+kumarsammi3@users.noreply.github.com> Date: Sun, 4 Oct 2020 13:45:22 +0530 Subject: [PATCH] Update 3_exercise_3_1.py --- 3_exercise_3_1.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/3_exercise_3_1.py b/3_exercise_3_1.py index 897d325..6cffa32 100644 --- a/3_exercise_3_1.py +++ b/3_exercise_3_1.py @@ -1,6 +1,10 @@ #Exercise 3.1 """ -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. +#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. """ hrs = input("Enter Hours:") h = float(hrs) @@ -12,4 +16,4 @@ pay = 40 * r + extra * r * 1.5 else: pay = 40 * r -print(pay) \ No newline at end of file +print(pay)