Question: python 4. In an elementary school system children are classified in age groups as follows: less than 2, ineligible; 2, toddler; 3-5, early childhood; 6

4. In an elementary school system children are classified in age groups as follows: less than 2, ineligible; 2, toddler; 3-5, early childhood; 6 and 7, young reader; 8-10, elementary; 11 and 12, middle; more than 12 ineligible. Given a variable age return the appropriate age group. 1% n []: def age_group(age): In an elementary school system children are classified in age groups as follows: less than 2, ineligible; 2, toddler; 3-5, early childhood; 6 and 7, young reader; 8-10, elementary; 11 and 12, middle; more than 12 ineligible. Given a variable age return the appropriate age group. # insert your code for this function here. # some test cases to try out print(age_group(1)) # should print ineligible print (age_group(2)) # should print toddler print (age_group(3.5)) # should print early childhood print(age_group(6)) # should print young reader print(age_group(8.5)) # should print elementary print (age_group(12)) # should print middle print(age_group(13)) # should print ineligible
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
