2-dim Dictionary,键为字符串

时间:2013-04-29 06:58:10

标签: python variables dictionary key

我有一个可能很简单的问题,但我还没有找到解决方案。 我试图在字符串varialbe的帮助下访问2-dim字典,但无法正确访问它。在代码上下文中将密钥保存在字符串变量中非常重要

一个简单的例子:

x = {"one":{"one":1},"two":2}
s1 = "two"
x[s1]                                                                                                                                      
2                                                                                                                                              
s2 = '["one"]["one"]'                                                                                                                                            
x[s2]
Traceback (most recent call last):                                                                                                             
File "<stdin>", line 1, in <module>                                                                                                          
KeyError: '["one"]["one"]'                                                                                                                       

有没有将这个2-Dim键存储到变量中,以便以后访问该字典?

2 个答案:

答案 0 :(得分:5)

最好的方法是使用tuple个键而不是像这样的字符串。

>>> # from functools import reduce (uncomment in Py3)
>>> x = {"one":{"one":1},"two":2}
>>> def access(d, keys):
        return reduce(dict.get, keys, d)


>>> access(x, ("two", ))
2
>>> access(x, ("one", "one"))
1

答案 1 :(得分:1)

你所要求的似乎是一个可怕的想法。为什么弦乐必须像你说的那样?如果您对中间字典不感兴趣 - 只需使用整个字符串作为键

>>> x = {'["one"]["one"]':1,"two":2}
>>> s1 = "two"
>>> x[s1]                                                                                                                                      
2
>>> 2                                                                                                                                              
2
>>> s2 = '["one"]["one"]'                                                                                                                                            
>>> x[s2]
1