"""Exercise 5.4.4 — Length of a word

Chapter 5: Data Structures — Everyday Programming

The program should print the number of letters in "science": 7.

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

word = "science"
count = len(word())
print(count)   # 7
