Practice Problem - Temperatures

Use the data/munich_temperatures_average.txt data file, which gives the temperature in Munich every day for several years. Read in the data, and print out the minimum, average maximum temperature for each year, e.g:

1995: -3C  10C  35C
1996: ...

You can also try and print out the same values, but for each month (averaged over years), e.g.:

January: -15C 0C 3C
February: ...

Solution

In [ ]:
# your solution here