Python Switch Case三种实现方法代码实例


Posted in Python onJune 18, 2020

Python没有switch语句,只能通过模拟来对应实现:

方法一:使用dictionary

**values = {
value1: do_some_stuff1,
value2: do_some_stuff2,
...
valueN: do_some_stuffN,
}
values.get(var, do_default_stuff)()

根据需求可以自行更改参数内容,灵活运用

def add(x,y): 
  print x+y 
def minus(x,y): 
  print x-y 
def multiply(x,y): 
  print x*y 
def div(x,y): 
  print x/y 
def fun_case_list(key,arg1,arg2):
  operator = {
  '+':add,
  '-':minus,
  '*':multiply,
  '/':div
  }
  if operator.has_key(key):
    return operator.get(key)(arg1,arg2)
  else:
    return 'No [%s] case in dic'%key #or do other func
if __name__ == "__main__":
  fun_case_list('*',3,5)
  fun_case_list('l',3,4)

或者你可以自己造一个类来实现:

class switch_case(object):
  def case_to_function(self,case,arg1,arg2):
    func_name = 'case_func_'+str(case)
    try:
      method = getattr(self,func_name)
      return method(arg1,arg2)
    except AttributeError:
      return 'No func found in case list,do default action here'
  def case_func_add(self,arg1,arg2):
    temp = arg1 + arg2
    return temp
  def case_func_minus(self,arg1,arg2):
    temp = arg1 - arg2
    return temp
  def case_func_multiply(self,arg1,arg2):
    temp = arg1 * arg2
    return temp
  def case_func_div(self,arg1,arg2):
    temp = arg1 / arg2
    return temp
func = 'minus'
case = switch_case()
print case.case_to_function(func,2,5)


#或者是构造属性去送参数,看个人喜好
class switch_case(object):
  def __init__(self, case, arg1, arg2):
    self.case = str(case)
    self.arg1 = arg1
    self.arg2 = arg2
  def case_to_function(self):
    func_name = 'case_func_'+str(self.case)
    try:
      method = getattr(self,func_name)
      return method()
    except AttributeError:
      return 'No func found in case list,do default action here'
    
  def case_func_add(self):
    temp = self.arg1 + self.arg2
    return temp
  def case_func_minus(self):
    temp = self.arg1 - self.arg2
    return temp
  def case_func_multiply(self):
    temp = self.arg1 * self.arg2
    return temp
  def case_func_div(self):
    temp = self.arg1 / self.arg2
    return temp

func = 'minxus'
case = switch_case(func,2,5)
print case.case_to_function()

方法二:使用lambda

result = {
'a': lambda x: x * 5,
'b': lambda x: x + 7,
'c': lambda x: x - 2
}[value](x)

方法三:Brian Beck提供了一个类 switch 来实现switch的功能

class switch(object):
  def __init__(self, value):
    self.value = value
    self.fall = False
  def __iter__(self):
    """Return the match method once, then stop"""
    yield self.match
    raise StopIteration
  def match(self, *args):
    """Indicate whether or not to enter a case suite"""
    if self.fall or not args:
      return True
    elif self.value in args: # changed for v1.5, see below
      self.fall = True
      return True
    else:
      return False

v = 'two'
for case in switch(v):
  if case('one'):
    print 1
    break
  if case('two'):
    print 2
    break
  if case('ten'):
    print 10
    break
  if case('eleven'):
    print 11
    break
  if case(): # default, could also just omit condition or 'if True'
    print "something else!"
    # No need to break here, it'll stop anyway

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python中Matplotlib实现绘制3D图的示例代码
Sep 04 Python
Python使用min、max函数查找二维数据矩阵中最小、最大值的方法
May 15 Python
Pandas 按索引合并数据集的方法
Nov 15 Python
Python变量类型知识点总结
Feb 18 Python
PyQt编程之如何在屏幕中央显示窗体的实例
Jun 18 Python
python turtle库画一个方格和圆实例
Jun 27 Python
Python 正则表达式 re.match/re.search/re.sub的使用解析
Jul 22 Python
使用Python实现正态分布、正态分布采样
Nov 20 Python
Python+Selenium+phantomjs实现网页模拟登录和截图功能(windows环境)
Dec 11 Python
python torch.utils.data.DataLoader使用方法
Apr 02 Python
Python爬虫过程解析之多线程获取小米应用商店数据
Nov 14 Python
基于Python实现一个春节倒计时脚本
Jan 22 Python
Python3开发环境搭建详细教程
Jun 18 #Python
Python collections.defaultdict模块用法详解
Jun 18 #Python
python实现批量命名照片
Jun 18 #Python
pandas之分组groupby()的使用整理与总结
Jun 18 #Python
解决Keyerror ''acc'' KeyError: ''val_acc''问题
Jun 18 #Python
Python调用shell cmd方法代码示例解析
Jun 18 #Python
Python如何自动获取目标网站最新通知
Jun 18 #Python
You might like
php页面跳转代码 输入网址跳转到你定义的页面
2013/03/28 PHP
PHP ajax 异步执行不等待执行结果的处理方法
2015/05/27 PHP
php实现无限级分类查询(递归、非递归)
2016/03/10 PHP
PHP解耦的三重境界(浅谈服务容器)
2017/03/13 PHP
Jquery和JS用外部变量获取Ajax返回的参数值的方法实例(超简单)
2013/06/17 Javascript
深入解析contentWindow, contentDocument
2013/07/04 Javascript
JS定义回车事件(实现代码)
2013/07/08 Javascript
input链接页面、打开新网页等等的具体实现
2013/12/30 Javascript
jquery删除数据记录时的弹出提示效果
2014/05/06 Javascript
13 款最热门的 jQuery 图像 360 度旋转插件推荐
2014/12/09 Javascript
Javascript的闭包详解
2014/12/26 Javascript
jQuery实现的鼠标滑过弹出放大图片特效
2016/01/08 Javascript
如何快速上手Vuex
2017/02/14 Javascript
用Vue.extend构建消息提示组件的方法实例
2017/08/08 Javascript
vue-cli如何引入bootstrap工具的方法
2017/10/19 Javascript
nuxt框架中路由鉴权之Koa和Session的用法
2018/05/09 Javascript
Vue+Jwt+SpringBoot+Ldap完成登录认证的示例代码
2018/05/21 Javascript
Vue 应用中结合vux使用微信 jssdk的方法
2018/08/28 Javascript
使用Angular自定义字段校验指令的方法示例
2019/02/01 Javascript
es6数据变更同步到视图层的方法
2019/03/04 Javascript
vue中npm包全局安装和局部安装过程
2019/09/03 Javascript
vue分页插件的使用方法
2019/12/25 Javascript
在Python中将函数作为另一个函数的参数传入并调用的方法
2019/01/22 Python
python 获取毫秒数,计算调用时长的方法
2019/02/20 Python
pytorch中如何使用DataLoader对数据集进行批处理的方法
2019/08/06 Python
python之列表推导式的用法
2019/11/29 Python
pandas 强制类型转换 df.astype实例
2020/04/09 Python
python能开发游戏吗
2020/06/11 Python
python安装cx_Oracle和wxPython的方法
2020/09/14 Python
一款纯css3实现的颜色渐变按钮的代码教程
2014/11/12 HTML / CSS
华美博弈C/VC工程师笔试试题
2012/07/16 面试题
教学质量评估实施方案
2014/03/17 职场文书
我的中国心演讲稿
2014/09/04 职场文书
乡镇三严三实学习心得体会
2014/10/13 职场文书
2015年三年级班主任工作总结
2015/05/21 职场文书
使用JS实现简易计算器
2021/06/14 Javascript