SHARE
TWEET

Untitled




Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- import sys
- while True:
- name=raw_input('Enter a name:')
- if name == 'DONE':
- break
- hours=raw_input('Hours worked:')
- if hours == 'DONE':
- break
- else:
- while int(hours) > 60 or int(hours) < 1:
- hours=raw_input('Hours worked:')
- if hours == 'DONE':
- sys.exit(0)
- hwage=raw_input('Enter hourly wage:')
- if hwage == 'DONE':
- break
- else:
- while int(hwage) > 20 or int(hwage) < 5:
- hwage=raw_input('Enter hourly wage:')
- if hwage == 'DONE':
- sys.exit(0)
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy.