# Dictionary Example

student = {"name": "Alice", "age": 22, "course": "Python"}

print(student["name"])
print(student.get("age"))
