a = [32, 17, 78, 41, 9] # Calcuate the sum of list # and divide it by length of list avg = sum(a) / len(a) print(avg)