Additional Data Structures in Python Flashcards
1
Q
defaultdict
A
from the collections package
useful for accessing or modify a missing key, defaultdict automatically creates missing keys and generates a default value for it
2
Q
Counter
A
from collections package
dictionary link object where elements are stored as dictionary keys and their counts are stored as values