"""Exercise 20.22.3 — Turning a word into letters

Chapter 20: Common Pitfalls — Everyday Programming

This program should turn the word into a list of its letters.

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

list = "abc"
letters = list("hello")
print(letters)
