Practice Problem - Temperatures

Use the data/munich_temperatures_average.txt data file, which gives the temperature in Munich every day for several years. Load the data and print out the minimum, average and maximum temperature of each year, for example

1995: -13C  8C  26C
1996: ...

You can then also compute and print the minimum, average and maximum temperature of each month averaged over the years:

January: -17C -1C 12C
February: ...

Hint: for simplicity, assume that each month has 30 days.

Solution

In [ ]:
# your solution here