gpt4 book ai didi

python - 在嵌套字典中查找最大值

转载 作者:太空狗 更新时间:2023-10-29 18:03:14 28 4
gpt4 key购买 nike

d = {
"local": {
"count": 1,
"health-beauty": {
"count": 1,
"tanning": {"count": 1}
}
},
"nationwide": {"count": 9.0},
"travel": {"count": 0}
}

在这种情况下,“nationwide” 是最大的。

下面的代码可以更轻松地附加到脚本:

d = {'travel': {'count': 0}, 'local': {'count': 1, 'health-beauty': {'count': 1, 'tanning': {'count': 1}}}, 'nationwide': {'count': 9.0}}

最佳答案

>>> max(d, key=lambda x: d[x]['count'])
'nationwide'

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

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