"""Solution 5.2.4 — Half of a measurement

Chapter 5: Data Structures — Everyday Programming

Bug type: Syntax

The closing parenthesis of print(...) is missing, so the program will
not parse. Add the ) after half.

Exercise: ex_5_2_4.py
"""

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