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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Counter

A

from collections package

dictionary link object where elements are stored as dictionary keys and their counts are stored as values

How well did you know this?
1
Not at all
2
3
4
5
Perfectly