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
from fastapi import APIRouter, BackgroundTasks, Depends, HTTPException, status from pydantic import BaseModel, EmailStr from sqlalchemy.orm import Session
Building a signup endpoint in FastAPI
dependency-injection
request-validation
background-tasks
Intermediate
8 steps
python
from django import forms from django.utils import timezone from .models import Reservation
Multi-field validation in a Django ModelForm
form validation
cross-field validation
modelform
Intermediate
7 steps
python
from django import template from django.urls import reverse, NoReverseMatch from django.utils.html import format_html
Active nav-link template tags in Django
template tags
url routing
active state
Intermediate
7 steps
python
from functools import wraps import asyncio from fastapi import APIRouter, FastAPI, Request
Per-route request timeouts in FastAPI
decorators
async
timeouts
Intermediate
6 steps
go
package scheduler import ( "container/heap"
A priority job queue with Go's container/heap
priority-queue
heap
interfaces
Intermediate
9 steps
python
import os from pathlib import Path BASE_DIR = Path(__file__).resolve().parent.parent.parent
How a Django settings module is wired
configuration
environment-variables
middleware
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.