Python to analyze weather data from a file. First, go to this
Minnesota Dept. of Natural Resources web page, which displays
weather data for Minneapolis on each day of the year 2000. Click
the CSV link to download a file containing the data. The file is a
“comma-separated values” text file of weather data. The first few
lines look like this:
"Date","Maximum Temperature degrees (F)","Minimum Temperature...
"2000-01-01","35.0","24.0","T","0.00","0.00"
"2000-01-02","35.0","29.0","0.04","0.50","0.00"
"2000-01-03","29.0","24.0","T","T","0.00"
The first line of the file contains column headings, and each...