## Aaron Schaffer ## payRate = input("Enter the employee's pay rate") while payRate < 7.50 or payRate > 18.25: payRate = input("\nEnter a rate between $7.50 and $18.25. Try again: $") hoursWorked = input("\nEnter the amount of hours worked for the employee: ") while hoursWorked < 0 or hoursWorked > 40: hoursWorked = input("\nEnter between 0 and 40 hours. Try again: ") grossPay = payRate * hoursWorked print ("\nThe employee's gross pay for this week is: ") print grossPay
Run
Reset
Share
Import
Link
Embed
Language▼
English
中文
Python Fiddle
Python Cloud IDE
Follow @python_fiddle
Browser Version Not Supported
Due to Python Fiddle's reliance on advanced JavaScript techniques, older browsers might have problems running it correctly. Please download the latest version of your favourite browser.
Chrome 10+
Firefox 4+
Safari 5+
IE 10+
Let me try anyway!
url:
Go
Python Snippet
Stackoverflow Question