Question: Write function called minimumWage which will return the minimum wage for someone based on their age. Argument: An integer (containing the person's age) Return
Write function called minimumWage which will return the minimum wage for someone based on their age. Argument: An integer (containing the person's age) Return value: A float (containing the minimum wage for a person of that age) *Note: If age is below 12 or above 80 then return: None The minimum wage for each age group is: Age Wage Under 18 = 4.35 18-20 = 6.15 21-24 = 7.70 25+ = 8.21 Please write in clean code, which includes: No obsolete lines of code: o No print statements in the function o No code which has no impact on the return value No input statements in the function
Step by Step Solution
There are 3 Steps involved in it
Heres the function minimum Wage ... View full answer
Get step-by-step solutions from verified subject matter experts
