spell_book = {
    "Lumos": "Creates light at wand tip",
    "Nox": "Extinguishes light",
    "Accio": "Summons an object"
}

# Loop through spell names only
for spell_name in spell_book.keys():
    print(spell_name, "—", spell_book[spell_name])
