我有一个列表如下

['item1', 'item2', 'item3', 'item4']

我想从上面的列表中构建一个字典如下
{
    "item1": {
        "item2": {
            "item3": "item4"
        }
    }
}

列表中的项目数量是动态的。字典将是一个嵌套字典,直到它到达列表的最后一个元素。
python中有什么方法可以做到这一点吗?

最佳答案

简单的单线:

a = ['item1', 'item2', 'item3','item4']
print reduce(lambda x, y: {y: x}, reversed(a))

为了更好的理解上面的代码可以扩展为:
def nest_me(x, y):
    """
    Take two arguments and return a one element dict with first
    argument as a value and second as a key
    """
    return {y: x}

a = ['item1', 'item2', 'item3','item4']
rev_a = reversed(a) # ['item4', 'item3', 'item2','item1']
print reduce(
    nest_me, # Function applied until the list is reduced to one element list
    rev_a # Iterable to be reduced
)
# {'item1': {'item2': {'item3': 'item4'}}}

关于python - 列出python中的嵌套字典,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28832166/

10-12 02:07