Skip to main content

Mojo module

counter

Defines the Counter type.

Import these APIs from the collections package:

from collections import Counter

Counters provide convenient tallying objects that use a dictionary to store keys and their counts. They offer the full functionality of counted sets, also called bags or multisets, and extend that model by supporting negative counts.

Structsโ€‹

Was this page helpful?