''' Author Day 17 Classwork - Problem #2 Use the weather.get_forecasted_reports block to answer this question: What is the average forecasted "feels like" temperature in Blacksburg? To calculate the "feels like" temperature you need to use this formula: feels_like = temperature - wind**0.7 You can reuse your code from question 2 on the previous day's homework. ''' import weather forecast_list = weather.get_forecasted_reports("Blacksburg") # print can take multiple parameters. Separate them with commas. print("Feels like Temperature: ", average_feels_like_temperature)