Skip to content

Instantly share code, notes, and snippets.

View imranlondon's full-sized avatar
🎯
Focusing

Muhammad Imran imranlondon

🎯
Focusing
View GitHub Profile
@imranlondon
imranlondon / 3.1.py
Created November 8, 2022 21:47 — forked from Mohamed2del/3.1.py
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()…
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)