# Keys label values — like a student record or spell book entry
student = {
    "name": "Harry",
    "house": "Gryffindor",
    "points": 120
}

# Access by key; update with assignment
print(student["name"], "has", student["points"], "points")
student["points"] = student["points"] + 10
print("After winning the match:", student["points"])
