Learn Python, Microsoft 365 and Google Workspace
Introduced in Python 3.10, match-case
is a modern way to handle data-driven decision-making. It goes beyond simple if-elif-else
chains by letting you check the structure of data (like dictionaries, lists, or objects) and extract values from them. Think of it as a supercharged switch
statement!
match-case
?if
statements with readable patterns.The match case statement in Python begins with the keyword match, followed by an expression. This expression is the value that you want to evaluate and compare against different possibilities [1]. It’s important to note that this expression is evaluated only once at the very beginning of the match statement [11].
Inside the match block, you’ll find one or more case blocks. Each case starts with the keyword case and is followed by a “pattern.” This pattern is what Python will try to match against the value of the expression you provided in the match statement [1]. If the pattern in a case block matches the expression’s value, the block of code associated with that case will be executed [1].
Here’s a basic example to illustrate the syntax. Let’s say we want to check the day of the week:
match variable_to_check:
case Pattern1:
# Action for Pattern1
case Pattern2:
# Action for Pattern2
case _:
# Default action
day = "Monday"
match day:
case "Monday":
print("Start of the week!")
case "Friday":
print("Almost weekend!")
case _:
print("Just another day.")
A significant advantage of Python’s match case is that it automatically exits
the match block as soon as it finds the first case that matches 1. This is different from the switch statement in some other programming languages where you might need to use explicit break statements to prevent the code from “falling through” to the next case. This automatic exiting makes the syntax cleaner and helps reduce potential errors for beginners [1].
While the basic example above shows simple equality checks, the real power of match case lies in its ability to perform more sophisticated “pattern matching” 1. This means you can check for more than just whether a value is equal to a specific literal.
Let’s look at some examples of matching with literal values:
http_code = 404
match http_code:
case 200:
print("OK")
case 404:
print("Not Found")
case 500:
print("Server Error")
case _:
print("Unknown Status")
command = "start"
match command:
case "start":
print("Starting the process...")
case "stop":
print("Stopping the process...")
case "help":
print("Showing help documentation...")
case _:
print("Unknown command.")
is_weekend = True
match is_weekend:
case True:
print("It's the weekend!")
case False:
print("Back to work.")
The match case statement also allows you to use the OR operator
, represented by the pipe symbol \|
, within a case to check against multiple values at once 1. This can make your code even more concise when you want to perform the same action for several different values.
day = "Sunday"
match day:
case "Saturday" | "Sunday":
print("It's a weekend day.")
case "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday":
print("It's a weekday.")
case _:
print("Invalid day.")
for more details, Say Goodbye to Long If-Elif Chains with Python’s Match Case