Python 没有 switch/case 语句,如果遇到很多中情况的时候,写很多的 if/else 不是很好维护,这时可以考虑用字典映射的方法替代:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
def zero():
return"zero"
def one():
return"one"
def two():
return"two"
def num2Str(arg):
switcher={
0:zero,
1:one,
2:two,
3:lambda:"three"
}
func=switcher.get(arg,lambda:"nothing")
return func()
if __name__ =='__main__':
print num2Str(0)