python
21 lines · 5 steps
Multi-key sorting patterns in Python
Three ways to sort lists of dicts on multiple fields, including mixed ascending and descending order.
Explained by
highlit
1from operator import itemgetter
2
3
4def sort_employees(employees):
5 return sorted(
6 employees,
7 key=itemgetter("department", "last_name", "first_name"),
8 )
9
10
11def sort_by_salary_then_tenure(employees):
12 return sorted(
13 employees,
14 key=lambda e: (-e["salary"], e["years"], e["last_name"]),
15 )
16
17
18def sort_with_mixed_directions(records):
19 ordered = sorted(records, key=itemgetter("name"))
20 ordered.sort(key=itemgetter("priority"), reverse=True)
21 return ordered
01 / 01
STEP 01
‹ swipe to step through ›
Walkthrough
Space play
←→ step
click any line
Three takeaways
- 1A tuple key sorts by its first element, breaking ties with each following element in turn.
- 2Negating a numeric key inverts its direction while keeping other keys ascending in a single pass.
- 3Python's stable sort lets you layer sorts: sort by the least significant key first, most significant last.
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
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
python
def is_valid_card_number(number: str) -> bool: digits = [int(c) for c in number if c.isdigit()] if len(digits) < 13 or len(digits) > 19:
Validating card numbers with the Luhn check
checksum
validation
luhn-algorithm
Intermediate
6 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/multi-key-sorting-patterns-in-python-explained-python-bd48/embed?autoplay=1" width="100%" height="520" loading="lazy" style="border:0"></iframe>
Autoplay is on by default — add ?autoplay=0 to start paused.