gpt4 book ai didi

python - 是否可以将列表转换为键的嵌套字典*而无需*递归?

转载 作者:太空狗 更新时间:2023-10-29 21:18:46 25 4
gpt4 key购买 nike

假设我有一个列表如下:

mylist = ['a','b','c','d']

是否可以根据这个列表使用递归/递归函数创建以下字典?

{
'a': {
'b': {
'c': {
'd': { }
}
}
}
}

最佳答案

对于简单的情况,只需从末尾或开始进行迭代和构建:

result = {}
for name in reversed(mylist):
result = {name: result}

result = current = {}
for name in mylist:
current[name] = {}
current = current[name]

第一个解决方案也可以使用 reduce() 表示为单行解决方案:

reduce(lambda res, name: {name: res}, reversed(mylist), {})

关于python - 是否可以将列表转换为键的嵌套字典*而无需*递归?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13238255/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com