- A non-governmental organization needs a program to calculatethe amount of financial assistance for needy families. The formulais as follows:5 pts
- If the annual household income is between $30,000 and $39,999and the household has at least three children, the amount is $1000per child.
- If the annual household income is between $20,000 and $29,999and the household has at least two children, the amount is $1500per child.
- If the annual household income is less than $20,000, the amountis $2000 per child.
(Note: anything outside theseconditions, there is NO financial assistance)
Implement a function for thiscomputation. Write a program that asks for the household income andnumber of children for each applicant, printing the amount returnedby your function. Use a -1 as a sentinel value for the input.
DefcomputeAssistance (income,children)
- Your code with comments
- A screenshot of the execution
Test Cases:
           Household income =$35,000            No. of children = 4 (should return $1000/child)
           Household income =$25,000            No. of children = 3 (should return $1500/child)
           Household income =$18,000            No. of children = 2 (should return $2000/child)
           Household income =$40,000            No. of children = 1 (should return “No assistanceâ€)
python keep it simple