diff --git a/Doc/faq/design.rst b/Doc/faq/design.rst index e2710fab9cf800..4f3133971e868d 100644 --- a/Doc/faq/design.rst +++ b/Doc/faq/design.rst @@ -263,6 +263,9 @@ In general, structured switch statements execute one block of code when an expression has a particular value or set of values. Since Python 3.10 one can easily match literal values, or constants within a namespace, with a ``match ... case`` statement. +See `the specification `_ and `the tutorial `_ for details about +the :keyword:`match` statement. + An older alternative is a sequence of ``if... elif... elif... else``. For cases where you need to choose from a very large number of possibilities,