@@ -259,9 +259,11 @@ is evaluated in all cases.
259
259
Why isn't there a switch or case statement in Python?
260
260
-----------------------------------------------------
261
261
262
- You can do this easily enough with a sequence of ``if... elif... elif... else ``.
263
- For literal values, or constants within a namespace, you can also use a
264
- ``match ... case `` statement.
262
+ In general, structured switch statements execute one block of code
263
+ when an expression has a particular value or set of values.
264
+ Since Python 3.10 one can easily match literal values, or constants
265
+ within a namespace, with a ``match ... case `` statement.
266
+ An older alternative is a sequence of ``if... elif... elif... else ``.
265
267
266
268
For cases where you need to choose from a very large number of possibilities,
267
269
you can create a dictionary mapping case values to functions to call. For
@@ -290,6 +292,9 @@ It's suggested that you use a prefix for the method names, such as ``visit_`` in
290
292
this example. Without such a prefix, if values are coming from an untrusted
291
293
source, an attacker would be able to call any method on your object.
292
294
295
+ Imitating switch with fallthrough, as with C's switch-case-default,
296
+ is possible, much harder, and less needed.
297
+
293
298
294
299
Can't you emulate threads in the interpreter instead of relying on an OS-specific thread implementation?
295
300
--------------------------------------------------------------------------------------------------------
0 commit comments