初学Python语言,竟然很久才发现Python没有switch-case语句
官方的解释说,“用if... elif... elif... else
序列很容易来实现 switch / case 语句”。而且可以使用函数字典映射和类的调度方法。
简单代码如下:
1 switch = { 2 "a":lambda x:x*2, 3 "b":lambda x:x*3, 4 "c":lambda x:x**x 5 }
初学Python语言,竟然很久才发现Python没有switch-case语句
官方的解释说,“用if... elif... elif... else
序列很容易来实现 switch / case 语句”。而且可以使用函数字典映射和类的调度方法。
简单代码如下:
1 switch = { 2 "a":lambda x:x*2, 3 "b":lambda x:x*3, 4 "c":lambda x:x**x 5 }
下一篇:Python:键盘输入input
if、for、while语句
switch-case case expressions must be constant expressions的原因
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M