"""Exercise 9.9.1 — Placeholder for later

Chapter 9: Control Flow — Everyday Programming

The if branch is a planned feature not yet written, so it should do
nothing for now; the program should still print every item.

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

for item in [1, 2, 3]:
    if item == 2:

    print(item)
# Expected: 1 2 3
