Introduction
Imagine you have a big box of labeled jars, and you want to find the contents quickly without opening each jar. This is the problem dictionaries solve in computing: storing and finding information fast using labels called keys.
Think of a dictionary like a phone book where each person's name is a key and their phone number is the value. When you want to call someone, you look up their name and find their number quickly.
┌───────────────┐
│ Dictionary │
├───────────────┤
│ Key │ Value │
├───────┼───────┤
│ Name │ Alice │
│ Age │ 30 │
│ City │ Paris │
└───────┴───────┘