首页 > 代码库 > Python之switch
Python之switch
首先声明,Python没有switch!!!
通过函数与字典的结合实现
1 #!/usr/bin/python 2 #coding:utf-8 3 4 from __future__ import division 5 6 def jia(x,y): 7 return x+y 8 9 def jian(x,y): 10 return x-y 11 12 def cheng(x,y): 13 return x*y 14 15 def chu(x,y): 16 return x/y 17 18 operator = {"+":jia, "-":jian, "*":cheng, "/":chu} 19 20 def f(x,o,y): 21 print operator.get(o)(x,y) 22 23 f(3,‘/‘,9)
Python之switch
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。