Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Exercise 3 (Based on an exercise by Cay Horstmann and Rance Necaise) A non-governmental organization needs to calculate the amount of financial assistance it will
Exercise 3 (Based on an exercise by Cay Horstmann and Rance Necaise) A non-governmental organization needs to calculate the amount of financial assistance it will provide to needy families. The formula is as follows: If the annual household income is at least $30,000 but below $40,000 and the household has at least three children, the amount is $1,500 per child. If the annual household income is at least $20,000 but below $30,000 and the household has at least two children, the amount is $1,000 per child. If the annual household income is below $20,000, the amount is $2,000 per child. Step 1: Create a new editor window and save it. Use lab5ex3.py as the file name. Step 2: Use the function design recipe (examples, header, description, body, test) to develop a function named assistance. The function has two parameters. The first parameter is the household income. The second parameter is the number of children in the household. It returns the amount of assistance the family should receive. Hint: a function that uses Boolean operators (and, or and not) will be much shorter than one that does not. Your function definition must have type annotations and a complete docstring. Use the Python shell to test your function. After you've finished testing, close the editor window for lab5ex3.py
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started