Home  >  Article  >  Backend Development  >  What to use instead of switch statement in python

What to use instead of switch statement in python

silencement
silencementOriginal
2019-05-23 18:00:234457browse

In python, use the [if..elif...else] statement to replace the switch statement. If there are too many categories, it is recommended to construct a dictionary mapping in the function. Another simple way is to use an anonymous function lambda instead.

What to use instead of switch statement in python

In Python, it is recommended that you use if..elif...else instead of the switch statement. If there are too many categories, the official recommendation is to construct a dictionary mapping in the function and then call function(value) to solve it.

(Recommended tutorial: python video tutorial)

For example:

What to use instead of switch statement in python

Another simpler method Use lambda anonymous function instead of functionWhat to use instead of switch statement in python

The above is the detailed content of What to use instead of switch statement in python. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn