---Python switch 代码处理方法!
2021-03-03 19:29
标签:sid 处理 python2 int -- ssi code RoCE style ---Python switch 代码处理方法! 标签:sid 处理 python2 int -- ssi code RoCE style 原文地址:https://www.cnblogs.com/bzhao/p/14383580.htmlPython是没有swithch语句, 这点还是对于我们这些整Java/C/Shell/... 人都是很不习惯, 你得这样才行!
#!/usr/bin/env python2
junk = "shoo2"
def shoo_fun1():
print "hello ok1"
def shoo_fun2():
print "hello ok2"
def shoo_fun3():
print "hello ok2"
def default_fun():
print "default"
sssDict = {
‘shoo1‘ : shoo_fun1,
‘shoo2‘ : shoo_fun2,
‘shoo3‘ : shoo_fun3,
"defautl" : default_fun,
}
def processId(procID):
sssDict[procID]()
processId(junk)
上一篇:多线程详解
文章标题:---Python switch 代码处理方法!
文章链接:http://soscw.com/index.php/essay/59655.html