Advertisement
lmayo

exercise2.3.py

Dec 28th, 2011
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.30 KB | None | 0 0
  1. #!/usr/bin/env python
  2. #
  3. # Author: Landon Mayo
  4. '''
  5. Exercise 2.3 Write a program to prompt the user for
  6. hours and rate per hour to compute gross pay.
  7. '''
  8. hours = raw_input('Enter Number of Hours: ')
  9. rate = raw_input('Now Enter Your Hourly Rate: ')
  10. pay = float(hours) * float(rate)
  11. print 'Pay:',pay
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement