码迷,mamicode.com
首页 > 编程语言 > 详细

PythonStudy——Python 中Switch-Case 结构的实现

时间:2019-04-17 09:45:28      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:自己   匿名   class   匿名函数   err   通过   int   python   ase   

 学习Python过程中,发现Python没有Switch-case,过去写C习惯用Switch/Case语句,官方文档说通过if-elif实现。所以不妨自己来实现Switch-Case功能。

方法一

通过字典实现

def foo(var):
    return {
        a: 1,
        b: 2,
        c: 3
    }.get(var, error)   # ‘error‘为默认返回值,可自设置

print(foo(a))
print(foo(b))
print(foo(c))

Output:
1
2
3

方法二

通过匿名函数实现

def foo(var,x):
    return {
            a: lambda x: x+1,
            b: lambda x: x+2,
            c: lambda x: x+3, 
    }[var](x)

 

PythonStudy——Python 中Switch-Case 结构的实现

标签:自己   匿名   class   匿名函数   err   通过   int   python   ase   

原文地址:https://www.cnblogs.com/tingguoguoyo/p/10721344.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!