"""Exercise 20.22.1 — Counting items in a basket

Chapter 20: Common Pitfalls — Everyday Programming

This program should count the letters in a fruit name after storing some
numbers.

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

len = [4, 8, 15]
fruit = "banana"
print("Letters in banana:", len(fruit))
