"""Exercise 5.2.4 — Half of a measurement

Chapter 5: Data Structures — Everyday Programming

A board is 9.0 meters long. The program should print half its length,
4.5.

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

length = 9.0
half = length / 2
print(half   # 4.5
