scores = [62, 74, 74, 81, 88, 95] total = 0 for score in scores: total += score mean = total / len(scores) print("Sum:", total) print("Count:", len(scores)) print("Mean:", mean) # Sum: 474 # Count: 6 # Mean: 79.0
Click Run to execute this code.