gpt4 book ai didi

python - 返回最小值的键

转载 作者:行者123 更新时间:2023-12-02 09:57:16 24 4
gpt4 key购买 nike

我想返回 dictionary 中最小值的键在Python中。键值对的值将有多个数字,即 dict[current] = (total, gone, heuristic) 。如何返回最小消失值的 key ?

最佳答案

min 与 lambda 查找函数结合使用:

min(d, key=lambda k: d[k][1])

关于python - 返回最小值的键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60133923/

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