Section 1/6Dictionary Fundamentals
Dictionary Fundamentals
Dictionaries:Use curly braces {}Store pairs as key: valueKeys must be unique and immutable
Working with Dictionaries
Dictionaries store data as key-value pairs, providing fast lookups for structured data. They are essential for representing real-world objects and relationships in code.
Dictionary Fundamentals
student = {"name": "Alice","age": 24,"major": "Computer Science"}
Dictionaries:
- Use curly braces
{} - Store pairs as
key: value - Keys must be unique and immutable