Write a program that asks the user for the number of hours worked and the cost per hour. Then show payment on the screen that corresponds to you
Solution:
hours = float(input("Enter your working hours: "))
cost = float(input("Enter what you charge per hour: "))
pay = hours * cost
print("Your pay is", pay)
Output:
Step 1:

Step 2:

Step 3:

#Why Python Programming Important
Hope You will learn Something. Happy Coding.