Is there a Python equivalent for the case statement such as the examples available in VB.NET or C#?
问问题
1772567 次
2 回答
742
Python 3.10 及更高版本
在 Python 3.10 中,他们引入了模式匹配。
Python 文档中的示例:
def http_error(status):
match status:
case 400:
return "Bad request"
case 404:
return "Not found"
case 418:
return "I'm a teapot"
case _:
return "Something's wrong with the internet"
Python 3.10 之前
虽然官方文档很高兴不提供 switch,但我已经看到了使用字典的解决方案。
例如:
# define the function blocks
def zero():
print "You typed zero.\n"
def sqr():
print "n is a perfect square\n"
def even():
print "n is an even number\n"
def prime():
print "n is a prime number\n"
# map the inputs to the function blocks
options = {0 : zero,
1 : sqr,
4 : sqr,
9 : sqr,
2 : even,
3 : prime,
5 : prime,
7 : prime,
}
然后调用等效的 switch 块:
options[num]()
如果您严重依赖失败,这将开始崩溃。
于 2012-07-14T00:05:45.890 回答
231
直接替换是if
// elif
。else
但是,在许多情况下,有更好的方法可以在 Python 中完成。请参阅“ Python 中 switch 语句的替换? ”。
于 2012-07-14T10:39:09.650 回答