# Track quiz scores and find the total and average
scores = [88, 92, 75, 95, 81]
total = 0

for score in scores:
    total = total + score   # add each score to the running total

average = total / len(scores)
print("Total points:", total)
print("Average score:", round(average, 1))
