国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

python中Switch/Case實現的示例代碼

2020-02-16 10:39:06
字體:
來源:轉載
供稿:網友

學習Python過程中,發現沒有switch-case,過去寫C習慣用Switch/Case語句,官方文檔說通過if-elif實現。所以不妨自己來實現Switch/Case功能。

使用if…elif…elif…else 實現switch/case

可以使用if…elif…elif..else序列來代替switch/case語句,這是大家最容易想到的辦法。但是隨著分支的增多和修改的頻繁,這種代替方式并不很好調試和維護。

方法一

通過字典實現

def foo(var):  return {      'a': 1,      'b': 2,      'c': 3,  }.get(var,'error')  #'error'為默認返回值,可自設置

方法二

通過匿名函數實現

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

方法三

通過定義類實現

參考Brian Beck通過類來實現Swich-case

# This class provides the functionality we want. You only need to look at# this if you want to know how this works. It only needs to be defined# once, no need to muck around with its internals.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# The following example is pretty much the exact use-case of a dictionary,# but is included for its simplicity. Note that you can include statements# in each suite.v = 'ten'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# break is used here to look as much like the real thing as possible, but# elif is generally just as good and more concise.# Empty suites are considered syntax errors, so intentional fall-throughs# should contain 'pass'c = 'z'for case in switch(c):  if case('a'): pass # only necessary if the rest of the suite is empty  if case('b'): pass  # ...  if case('y'): pass  if case('z'):    print "c is lowercase!"    break  if case('A'): pass  # ...  if case('Z'):    print "c is uppercase!"    break  if case(): # default    print "I dunno what c was!"# As suggested by Pierre Quentel, you can even expand upon the# functionality of the classic 'case' statement by matching multiple# cases in a single shot. This greatly benefits operations such as the# uppercase/lowercase example above:import stringc = 'A'for case in switch(c):  if case(*string.lowercase): # note the * for unpacking as arguments    print "c is lowercase!"    break  if case(*string.uppercase):    print "c is uppercase!"    break  if case('!', '?', '.'): # normal argument passing style also applies    print "c is a sentence terminator!"    break  if case(): # default    print "I dunno what c was!"# Since Pierre's suggestion is backward-compatible with the original recipe,# I have made the necessary modification to allow for the above usage.             
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 遵义县| 东乡| 鄂伦春自治旗| 韶关市| 囊谦县| 福贡县| 突泉县| 元谋县| 沂南县| 吉林市| 本溪市| 乌兰县| 石屏县| 铜川市| 醴陵市| 巴彦淖尔市| 中牟县| 长岛县| 六枝特区| 肥城市| 加查县| 文登市| 闸北区| 盐边县| 水富县| 称多县| 安塞县| 鄯善县| 三河市| 额济纳旗| 鄂托克前旗| 北安市| 读书| 凤庆县| 股票| 林周县| 贺兰县| 苗栗市| 莆田市| 昔阳县| 大宁县|