|
|
|
|
|
by Shizka
4216 days ago
|
|
I recently had a use case for this where I needed a naively created bag of words along with the frequency of words. Having Counter made this extremely easy as I could simply split the string on whitespaces and pass the result to a Counter object.
Another useful feature is that you can take the intersection of two Counter objects. It's a really nice data structure to have! |
|