Lesson 5 of 10

Summary Statistics 📊

🎯 Grades 6–8 ⏱ ~25 minutes 💚 Intermediate

What You'll Learn

  • Calculate mean, median, and mode in Python
  • Find range, minimum, and maximum
  • Use the statistics module for cleaner code
  • Understand what each statistic tells you about data

🎉 Check Your Understanding

1. Which Python function calculates the total of all values in a list?

total()
sum()
add()
count()

2. What is the mean of [10, 20, 30]?

20.0 — the middle value
20.0 — sum(60) ÷ count(3)
30 — the maximum
10 — the minimum

3. Which statistic is less affected by extreme outliers?

Mean
Median
Sum
Range

4. What does the range of a dataset tell you?

The average value
The most common value
How spread out the data is
The number of data points