#define gross pay equation def payEquation(x,y): return x*y #get hours print "Please enter your hourly pay rate" pay = float(raw_input()) while pay < 7.5: print "Error pay rate is out of range" print "Please enter a rate between $7.50 and $18.25" pay = float(raw_input()) while pay > 18.25: print "Error pay rate is out of range" print "Please enter a rate between $7.50 and $18.25" pay = float(raw_input()) #get and check hours print "Please enter the number of hours you worked" hours = float(raw_input()) while hours < 0: print "Error, number entered is not within valid weekly hourly range" print "Please enter hours worked between 0 and 40" hours = float(raw_input()) while hours > 40: print "Error, number entered is not within valid weekly hourly range" print "Please enter hours worked between 0 and 40" hours = float(raw_input()) grossPay = payEquation(hours,pay) print "Your gross pay is ${}".format(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