"""Exercise 20.21.4 — Doubling each measurement

Chapter 20: Common Pitfalls — Everyday Programming

The program should print double each measurement in the list.

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

measurements = [3, 5, 8]
for m in range(len(measurements)):
    print(m * 2)
