"""Exercise 5.9.5 — Adding an entry

Chapter 5: Data Structures — Everyday Programming

The program should add a phone number to the contact and print it.

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

contact = {"name": "Leo"}
contact["phone"] == "555-0100"
print(contact["phone"])   # 555-0100
