gpt4 book ai didi

python - 如何在多层 python 字典中找到最小值,以及它的 "path"(即叶值的键列表)

转载 作者:太空宇宙 更新时间:2023-11-04 06:56:23 25 4
gpt4 key购买 nike

我有以下格式的 python 字典:

d = 
{
'category' :
{
'genre': <int_value>
}
}

我想找到最小的<int_value> ,以及原始字典中的“路径”。

例如如果

d = 
{
'free':
{
'adventure' : 23,
'arcade' : 101,
},
'paid':
{
'arcade' : 130,
}
}

...结果应该是("free", "adventure", 23) .

谁能想到一个单行代码?

提前致谢!

最佳答案

print min((d[c][x], c, x) for c in d for x in d[c])

并重新安排:

print min( (d[c][x], x, c) for c in d for x in d[c] )[::-1]

关于python - 如何在多层 python 字典中找到最小值,以及它的 "path"(即叶值的键列表),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16127706/

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