# create the list of quiz scores quizzes = [88, 92, 64, 87, 91, 78, 94, 100] # find lowest value lowest = 100 for quiz in quizzes: if quiz < lowest: lowest = quiz # add up all the quizzes total = 0 for quiz in quizzes: total = total + quiz # subtract out the lowest total = total - lowest # get the average (divide by one less since we dropped one) average = total / (len(quizzes) - 1) # print the results print("Your average is", average)