I'm not able to run this code:
match shape:
case Point(x, y):
...
case Rectangle(x, y, _, _):
...
print(x, y)
I can't find the match
keyword in Python.
I found it here: https://www.python.org/dev/peps/pep-0622/#the-match-statement
Any idea?
Update 2021-04-19: Python 3.10 will introduce a structural pattern matching. See the other excellent answers for more details on that.
The source you're referring to is a PEP (Python Enhancement Proposal), it has not been implemented in a stable release yet. Furthermore, the PEP has been superseded by PEP634.
As of early 2021, the
match
keyword does not exist in the released Python versions <= 3.9.Since Python doesn't have any functionality similar to switch/case in other languages, you'd typically use nested
if/elif/else
statements or a dictionary.Here's an example based on your questions, even though it's not immediately clear to me what you're trying to achieve.