python怎么输出指标名

更新时间:01-26 教程 由 留井 分享

python怎么输出指标名?

mapper = dict(zip( ('Tom', 'Joes', 'Ki', 'Tim'), ('Teenage', 'Mutant', 'Ninja', 'Turtles') )

) def getName(): while True: name = raw_input("Enter a name: "

) if name in mapper: return name print "got:%s" % mapper.get(getName()) 用Python里的Dictionary

声明:关于《python怎么输出指标名》以上内容仅供参考,若您的权利被侵害,请联系13825271@qq.com
本文网址:http://www.25820.com/tutorial/14_2281587.html