8.4k views
3 votes
Make up a python program that can do the following

Write a program to ask the user to input the number of hours a person has worked in a week and the pay rate per hour.​

1 Answer

5 votes

Answer:

hrs=input("Enter Hour:")

rate=input("Eenter Rate per Hour:")

pay=float(hrs)*float(rate)

print("Pay:", pay)

Step-by-step explanation:

User Mike James
by
3.9k points