'''
    Author:
    Day 17 Homework - Problem #1

    The weather.get_all_forecasted_temperatures returns a list of
    forecasted temperatures for each city in the database. Use the
    data to answer the following question:
        What is the highest temperature for each city?

    Fill in the blanks to answer the question.
'''

import weather

all_forecasted_temperatures = weather.get_all_forecasted_temperatures()

for city_forecast in all_forecasted_temperatures:
    temperatures = ____[____]
    city_name = ____[____]
    ____ = -100
    for ____ in ____:
        if temp > highest_temp:
            highest_temp = temp
    print(____, ": ", ____)