111k views
2 votes
To practice solving a problem by calling multiple functions; to practice passing data results between functions Degree of Difficulty: Easy if you did everything right so far Now it's time to put all your functions together to print out a summary report for each ward. Write the "main" part of your program. For each ward, this program will print to the console the name of the ward, the TOTAL number of different neighbourhoods that can be found in that ward and the number of schools In that ward.

1 Answer

6 votes

Final answer:

To print out a summary report for each ward, you need to write the main part of your program. In this program, you should have a function that calculates the total number of different neighborhoods for a given ward and another function that calculates the number of schools in that ward. Then, in the main part of the program, you can call these functions for each ward and print the results.

Step-by-step explanation:

To print out a summary report for each ward, you need to write the main part of your program. In this program, you should have a function that calculates the total number of different neighborhoods for a given ward and another function that calculates the number of schools in that ward. Then, in the main part of the program, you can call these functions for each ward and print the results.

Here's an example code snippet:

def calculate_neighborhoods(ward):
# calculate the total number of different neighborhoods
# for the given ward
return neighborhoods
def calculate_schools(ward):
# calculate the number of schools in the given ward
return schools
wards = ['Ward A', 'Ward B', 'Ward C']
for ward in wards:
neighborhoods = calculate_neighborhoods(ward)
schools = calculate_schools(ward)
print('Ward:', ward)
print('Total neighborhoods:', neighborhoods)
print('Number of schools:', schools)
In this example, we have two functions: calculate_neighborhoods and calculate_schools. These functions take a ward as input and return the respective results. In the main part of the program, we loop through the list of wards, calling the functions for each ward and printing the results.

User Samnoon
by
7.8k points