"""Exercise 5.6.5 — How many items

Chapter 5: Data Structures — Everyday Programming

The program should print how many items are in the shopping list: 3.

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

shopping = ["milk", "eggs", "bread"]
count = len(shopping) - 1
print(count)   # 3
