Python Dictionaries

Article by:
Date Published:
Last Modified:

Overview

A Python dictionary is a data structure which stores items in key–value pairs. It is unordered, mutable and indexed.

Python dictionaries are typically implemented as a hash table data structure. This enables

$$O(n)$$

lookup. See the (#typical-implementations) section for more information on how a Python dictionary is implemented in the back-end.

Checking If A Key Exists In A Dictionary

The recommended way to check if a key exists in a Python dictionary is to use the in keyword, as shown in the code example below:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
my_dict = {
    'foo': 1,
    'bar': 2
}

if 'foo' in my_dict:
    print('Found key')
else:
    print('Did not find key')
# stdout: Found key

Iterating Over A Dictionary

Simple iteration can be done with the in operator on the dictionary itself, which provides you with the keys in the dictionary:

1
2
3
4
5
6
7
8
9
my_dict = {
    'foo': 1,
    'bar': 2
}
for key in my_dict:
    print(f'key = {key}, value = {my_dict[key]}')
# stdout:
# key = foo, value = 1
# key = bar, value = 2

Another way which is very similar but can save you from writing the code to get the value for each code yourself is to use the .items() function:

1
2
3
4
5
6
7
8
9
my_dict = {
    'foo': 1,
    'bar': 2
}
for key, value in my_dict.items():
    print(f'key = {key}, value = {value}')
# stdout:
# key = foo, value = 1
# key = bar, value = 2

This gives you the exact same output as before.

Get A List Of Dictionary Keys

Calling keys() on a Python dictionary returns a dict_keys object. A dict_keys object is similar to a List, but you cannot index or modify the object.

1
2
3
4
5
6
7
my_dict = {
    'foo': 1,
    'bar': 2
}

print(my_dict.keys())
# stdout: dict_keys(['foo', 'bar'])

If you really want a list, you can pass this dict_keys object into the list() constructor.

1
2
3
4
keys_list = list(my_dict.keys())

print(keys_list)
# stdout: ['foo', 'bar']

Iterating And Deleting Keys At The Same Time

Strictly speaking, you can’t iterate over a dictionary and delete entries at the same time. However, you can quite easily create a copy of the dictionary keys, iterate of that, and delete entries from the dictionary, as shown in the following example:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
my_dict = {
    'foo': 1,
    'bar': 2
}
for key in list(my_dict.keys()):
    if key == 'foo':
        del my_dict[key]

print(my_dict)
# stdout: {'bar': 2}

This does not occur much overhead as you are just copying the keys, and not the values.

Another way you can do it is by creating a new dictionary using dictionary comprehension:

1
2
3
4
5
6
7
my_dict = {
    'foo': 1,
    'bar': 2
}
my_dict_2 = { k: v for k, v in my_dict.items() if k != 'foo' }
print(my_dict_2)
# stdout: {'bar': 2}

This however creates a copy, and might be too memory intensive for large dictionaries.

del vs. pop()

Both del and pop() can be used to remove items from a dictionary:

1
2
3
4
5
6
7
my_dict = {
    'foo': 1,
    'bar': 2
}

del my_dict['foo']
my_dict.pop('foo')

It is recommended to use del if you just want to delete the item, as it will be slightly faster than pop(). Use pop() if you want to capture the removed item, as pop() returns the removed item:

1
my_item = my_dict.pop('foo')

Combining Dictionaries

Python dictionaries can be combined (merged) with the update() function.

1
2
3
4
5
6
my_dict1 = { 'a': 1, 'b': 2 }
my_dict2 = { 'b': 3, 'c': 4 }

my_dict1.update(my_dict2)
print(my_dict1)
# stdout: {'a': 1, 'b': 3, 'c': 4}

As of Python 3.5 and higher, they can also be combined with the ** syntax below:

1
2
3
4
5
my_dict1 = { 'a': 1, 'b': 2 }
my_dict2 = { 'b': 3, 'c': 4 }
my_dict3 = {**my_dict1, **my_dict2}
print(my_dict3)
# stdout: {'a': 1, 'b': 3, 'c': 4}

Sorting Dictionaries

You can get a sorted list of the dictionary keys with the built-in sorted() function:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
my_dict = { 2: 'a', 4: 'dict', 3: 'sorted', 1: 'I\'m' }
sorted_keys = sorted(my_dict)
print(sorted_keys)
# stdout: [1, 2, 3, 4]
for key in sorted_keys:
    print(my_dict[key])
# stdout:   I'm
#           a
#           sorted
#           dict

sorted() returns a new list, which contains all of dictionary keys in sorted order.

Typical Implementations

All popular implementations of Python implement dictionaries as hash tables. They use open addressing to resolve hash collisions.

Performance

OperationAverage CaseAmortized Worst CaseExample
Get Item$$O(n)$$$$O(n)$$d[k]
Set Item$$O(1)$$$$O(n)$$d[k] = v
Delete Item$$O(1)$$$$O(n)$$del d[k]
Iteration$$O(n)$$$$O(n)$$for k in d:
Copy$$O(n)$$$$O(n)$$d2 = d1.copy
Table: Time complexities of the Python dictionary.

defaultdicts have the same time complexities as a dictionary.


Authors

Geoffrey Hunter

Dude making stuff.

Creative Commons License
This work is licensed under a Creative Commons Attribution 4.0 International License .

Related Content:

Tags

comments powered by Disqus