"""Exercise 5.9.1 — Looking up a name

Chapter 5: Data Structures — Everyday Programming

A student record stores a name. The program should print "Maya".

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

student = {"name": "Maya", "grade": 10}
print(student["Name"])   # Maya
