Design a program that uses a random number generator to generate rainfall statistics for 12 months into a list. The program should display the total rainfall for the year, the average rainfall per month, and the months with the highest and lowest amount of rainfall. Since we are dealing with rainfall, you'll use random.random(). We'll have to multiply it by 15 to get a more realistic amount. So there should be two lists: one for rain amounts and one for month names.
Any help with some explanations would be absolutely wonderful, please and thank you in advance.