获得价值的简单字典

时间:2015-02-02 02:13:45

标签: python

names = ['a', 'b', 'c']
values = range(1,4)

dicts = dict(zip(names, values))

this_name = 'b'

如何在这里获取值2?

3 个答案:

答案 0 :(得分:2)

dicts.get(this_name,"") ""是默认值,如果dict中没有键b

答案 1 :(得分:1)

在最后添加此代码:

print dicts[this_name]

答案 2 :(得分:1)

你可以这样试试:

>>> dicts[this_name]
2
>>> dicts.get(this_name)
2

看看字典如何工作Dictionary