Please enable JavaScript to use CodeHS

Want to receive Question of the Day updates? Subscribe Here

Python Question of the Day March 11, 2025

  1. Incorrect Correct No Answer was selected Invalid Answer

    What will the following program print to the console when it runs?

    three_day_forecast = ["53", "54", "52"]
    five_day_forecast = ["53", "54", "52", "57", "58"]
    full_forecast = list(three_day_forecast) + list(five_day_forecast[3:])
    for index, temp in enumerate(full_forecast):
        print("Day " + str(index+1) + ": " + temp + "°F")
    Python