Объявите total
перед входом в цикл for, чтобы он не сбрасывался при каждой итерации, добавляйте общее количество дождя для года y
в total
каждую итерацию, затем вычисляйте и распечатывайте результаты после выхода из цикла. Как то так:
# Outside of for loop
total = 0
for y in range(years_of_rain):
# Inside of for loop
# Code for getting input for current year goes here
total += jan + feb + mar + apr + may + jun + jul + aug + sep + oct + nov + dec
# Outside of for loop, after it has finished
num_months = MONTHS * years_of_rain
average = total / num_months
print('The total amount of rain was ' + format(total , ',.2f') + ' inches' )
print('the average amount of rain was ' + format(average , ',.1f') + ' inches per month.' )