Question: Can someone help me figure this out using python and dctionaries? Write a program to load the Syracuse weather data from Dec 2015 in JSON
Can someone help me figure this out using python and dctionaries?
Write a program to load the Syracuse weather data from Dec 2015 in JSON format into a Python list of dictionary. The file with the weather data is in your Now-You-Code folder: "NYC4-syr-weather-dec-2015.json" You should load this data into a Python list of dictionary using the json package. After you load this data calculate the number of days where the Average Daily Temperature (Mean TemperatureF') is ABOVE freezing: Store the days above freezing and below freezing into a Python dictionary and then print out the dictionary like this: {'below-freezing': 4, 'above-freezing': 27} Make sure to plan out your steps with a to-do list BEFORE you write code. Write a program to load the Syracuse weather data from Dec 2015 in JSON format into a Python list of dictionary. The file with the weather data is in your Now-You-Code folder: "NYC4-syr-weather-dec-2015.json" You should load this data into a Python list of dictionary using the json package. After you load this data calculate the number of days where the Average Daily Temperature (Mean TemperatureF') is ABOVE freezing: Store the days above freezing and below freezing into a Python dictionary and then print out the dictionary like this: {'below-freezing': 4, 'above-freezing': 27} Make sure to plan out your steps with a to-do list BEFORE you write code
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
