![]() |
VOOZH | about |
Dictionary is a data structure that stores information in key-value pairs. While keys must be unique and immutable (like strings or numbers), values can be of any data type, whether mutable or immutable. This makes dictionaries ideal for accessing data by a specific name rather than a numeric position like in list.
Example: This example shows how a dictionary stores data using keys and values.
{'name': 'Jake', 'age': 22}
Explanation: "name" and "age" are keys, "Jake" and 22 are their values and dictionary stores data in key:value format
A dictionary is created by writing key-value pairs inside { }, where each key is connected to a value using colon (:). A dictionary can also be created using dict() function.
{'x': 1, 'y': 2}
{'name': 'Sam', 'age': 20}
A value in a dictionary is accessed by using its key. This can be done either with square brackets [ ] or with the get() method. Both return the value linked to the given key.
Kat 21
Note: Accessing a missing key with [ ] raises a KeyError, while get() is safer because it returns None (or a default value) instead of an error.
New items are added to a dictionary using the assignment operator (=) by giving a new key a value. If an existing key is used with the assignment operator, its value is updated with the new one.
{'name': 'Alex', 'age': 21}
Dictionary items can be removed using built-in deletion methods that work on keys:
1. del: removes an item using its key
{'b': 2}
2. pop(): removes the item with the given key and returns its value
1
{'b': 2}
3. popitem(): removes and returns the last inserted key-value pair
('b', 2)
4. clear(): removes all items from the dictionary
{}
A dictionary can be traversed using a for loop to access its keys, values or both key-value pairs by using the built-in methods keys(), values() and items().
1. Iterate keys: Returns all keys from the dictionary.
a b
2. Iterate values: Returns all values from the dictionary.
1 2
3. Iterate key-value pairs: Returns all key-value pairs as tuples.
a 1 b 2
Read in detail: Ways to Iterate Over a Dictionary
A nested dictionary is a dictionary that contains another dictionary as one of its values. Below diagram shows how a nested dictionary works, where key 3 points to another dictionary inside the main dictionary.
The arrows show how each key is connected to its corresponding value.