ok the guy helpes me with my problem in my last post but I need to switch this:
#This module determines highest value in list
def highestMonthNumber (rainfall):
month = ['January','Febuary','March','April','May','June','July','August'\
,'September','October','November','December']
highestMonthly = 0
for m, n in enumerate(rainfall):
if n > highestMonthly:
highestMonthly = n
highestMonth = m
return month[highestMonth], highestMonthly
to find lowest........
the rest of the code is in my other post including what he fixed for me