Guest User

Untitled

a guest
May 28th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. hours = input(‘Enter your hours worked this week’)
  2. rate = input(‘Enter your rate of pay’)
  3. hours = float(hours)
  4. rate = float(rate)
  5. pay = (hours * rate)
  6. print(pay)
Add Comment
Please, Sign In to add comment