"""Exercise 20.12.2 — Collecting daily steps

Chapter 20: Common Pitfalls — Everyday Programming

This program should create a list of step counts and add today's count.

This program contains exactly one bug. Solution: sol_20_12_2.py
"""

steps = (8000, 9500, 7000)
steps.append(10000)
print(steps)
