Exerpad
Exercise 3 · Chapter: DictionariesRequired+50 XP

Fix the Dict

This program should print the student's name, but it uses the wrong key. Fix it!

Expected output:

Name: Alex
Need a hint?
3 available · costs 5 XP each
python
student = {"name": "Alex", "age": 10, "grade": "5th"}
print("Name:", student["nombre"])
Output
Run your code to see the output here.