← Dicts, Tuples, and Sets
Make a Dictionary
① Learn
A dictionary stores values by key instead of by position. Use curly braces and key: value pairs.
② Implement — write it, run it, submit
Goal
Make `profile` equal `{'name': 'Ava', 'score': 88}`.
Output
Hints
- Stuck? Reveal a hint.