python
33 lines · 8 steps
Counting things with collections.Counter
A tour of Counter's tallying, merging, comparison, and expansion tricks through small helper functions.
Explained by
highlit
1from collections import Counter
2
3
4def word_frequencies(text):
5 words = text.lower().split()
6 return Counter(words)
7
8
9def char_histogram(text):
10 counts = Counter(c for c in text if c.isalpha())
11 return counts
12
13
14def merge_counts(a, b):
15 combined = Counter(a)
16 combined.update(b)
17 return combined
18
19
20def difference(a, b):
21 return Counter(a) - Counter(b)
22
23
24def top_n(items, n):
25 return Counter(items).most_common(n)
26
27
28def has_same_multiset(a, b):
29 return Counter(a) == Counter(b)
30
31
32def elements_with_repetition(counts):
33 return list(Counter(counts).elements())
01 / 01
STEP 01
‹ swipe to step through ›
Walkthrough
Space play
←→ step
click any line
Three takeaways
- 1Counter turns any iterable into a tally dict where missing keys default to zero.
- 2Arithmetic and comparison operators let you treat Counters as multisets, not just dicts.
- 3Methods like most_common and elements expose ranking and re-expansion without manual loops.
Related explainers
python
import argparse import sys from pathlib import Path
Building a subcommand CLI with argparse
cli
argparse
subcommands
Intermediate
6 steps
python
from collections.abc import Mapping from typing import Any, Iterator
Flattening nested config into dotted keys
recursion
generators
tree-traversal
Intermediate
7 steps
python
import csv import io from datetime import datetime
Streaming a CSV export in Flask
streaming
generators
csv
Intermediate
9 steps
go
package cache import ( "container/list"
Building a generic LRU cache in Go
lru-cache
generics
linked-list
Intermediate
8 steps
python
import time from collections import defaultdict from threading import Lock
Sliding-window login rate limiting in Flask
rate-limiting
sliding-window
thread-safety
Intermediate
7 steps
python
from django.conf import settings from django.contrib.auth import get_user_model from django.core.mail import EmailMultiAlternatives from django.db.models.signals import post_save
Sending a welcome email with Django signals
signals
email
user-activation
Intermediate
8 steps
Share this explainer
Here's the card — post it anywhere.
Made with highlit — turn any snippet into a walkthrough like this in about a minute.
Explain your code
Embed this explainer
Drop the interactive walkthrough into a blog or docs. Views never cost a credit.
<iframe src="https://highlit.co/explainers/counting-things-with-collections-counter-explained-python-52fd/embed?autoplay=1" width="100%" height="520" loading="lazy" style="border:0"></iframe>
Autoplay is on by default — add ?autoplay=0 to start paused.