I'm excited to try the new structural pattern matching in Python 3.10 but the commands are not recognized. I tried on both 3.10.0 and 3.10.4:
Python 3.10.4 (tags/v3.10.4:9d38120, Mar 23 2022, 23:13:41) [MSC v.1929 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> print(sys.version)
3.10.4 (tags/v3.10.4:9d38120, Mar 23 2022, 23:13:41) [MSC v.1929 64 bit (AMD64)]
>>> match
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'match' is not defined
Any ideas?
The specification of the
match
statement (PEP 634) says:This means that if you try to evaluate an expression that is just
match
, it will not be treated as amatch
statement, but as a variable calledmatch
, which isn't defined in your case (no pun intended).Try writing a complete
match
statement.