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.