Question
Using Multidimensional Lists Summary In this lab, you will complete a Python program that uses a two-dimensional list to store data for the Building Block
Using Multidimensional Lists
Summary
In this lab, you will complete a Python program that uses a two-dimensional list to store data for the Building Block Day Care Center.
The day care center charges varying weekly rates depending on the age of the child and the number of days per week the child attends. The program should allow the user to enter the age of the child and the number of days per week the child will be at the day care center. The program should output the appropriate weekly rate.
The file provided for this lab contains all of the necessary variable declarations, except the two-dimensional list. You need to write the input statements and the code that initializes the two-dimensional list, determines the weekly rate, and prints the weekly rate.
Comments in the code tell you where to write your statements. Weekly rates can be found in the provided table:
Age: | 1 | 2 | 3 | 4 | 5 |
---|---|---|---|---|---|
0 | 30.00 | 60.00 | 88.00 | 115.00 | 140.00 |
1 | 26.00 | 52.00 | 70.00 | 96.00 | 120.00 |
2 | 24.00 | 46.00 | 67.00 | 89.00 | 110.00 |
3 | 22.00 | 40.00 | 60.00 | 75.00 | 88.00 |
4 + | 20.00 | 35.00 | 50.00 | 66.00 | 84.00 |
Instructions
Declare and initialize the two-dimensional list.
Write the Python statements that retrieve the age of the child and the number of days the child will be at the day care center.
Determine and print the weekly rate.
Execute the program and verify that the output is correct.
# Declare two dimensional list here
# Declare other variables QUIT = 99
age = int(input("Enter the age of the child or 99 to quit: "))
# Perform a priming read to get the age of the child while age != QUIT:
# Ask the user to enter the number of days
# Print the weekly rate
# Ask the user to enter the next child's age
print("End of program")
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