Match Statements in Python
From the Python cheat sheet ยท Control Flow ยท verified Jul 2026
Match Statements
Structural pattern matching (Python 3.10+).
python
# Basic match
match command:
case "quit":
exit()
case "hello":
print("Hi!")
case _:
print("Unknown")๐ก match/case is structural pattern matching, not just a switch statement
โก Use | to match multiple values in one case (e.g., 500 | 502 | 503)
๐ The _ wildcard matches anything โ use it as a default/fallback case
๐ข Add a guard with "if" after the pattern for conditional matching
matchpattern-matchingcontrol-flow