gpt4 book ai didi

python - 如何展平嵌套的 python 字典?

转载 作者:行者123 更新时间:2023-11-28 20:03:54 25 4
gpt4 key购买 nike

我正在尝试展平嵌套字典:

dict1 = {
'Bob': {
'shepherd': [4, 6, 3],
'collie': [23, 3, 45],
'poodle': [2, 0, 6],
},
'Sarah': {
'shepherd': [1, 2, 3],
'collie': [3, 31, 4],
'poodle': [21, 5, 6],
},
'Ann': {
'shepherd': [4, 6, 3],
'collie': [23, 3, 45],
'poodle': [2, 10, 8],
}
}

我想在列表中显示所有值:[4, 6, 3, 23, 3, 45, 2, 0, 6, 1, 2, 3,..., 2, 10, 8]

我的第一个想法是这样做:

dict_flatted = [ i for name in names.values() for dog in dogs.values() for i in dog]

虽然我得到了错误。我很乐意提供有关如何处理它的提示。

最佳答案

您可以使用如下简单的递归函数。

def flatten(d):    
res = [] # Result list
if isinstance(d, dict):
for key, val in d.items():
res.extend(flatten(val))
elif isinstance(d, list):
res = d
else:
raise TypeError("Undefined type for flatten: %s"%type(d))

return res


dict1 = {
'Bob': {
'shepherd': [4, 6, 3],
'collie': [23, 3, 45],
'poodle': [2, 0, 6],
},
'Sarah': {
'shepherd': [1, 2, 3],
'collie': [3, 31, 4],
'poodle': [21, 5, 6],
},
'Ann': {
'shepherd': [4, 6, 3],
'collie': [23, 3, 45],
'poodle': [2, 10, 8],
}
}

print( flatten(dict1) )

关于python - 如何展平嵌套的 python 字典?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39135433/

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