如何从字典中找到最大值?

莉祖祖

嗨,这是我第一次使用python

我有一本字典:

players= {"Gehrig":{"atBats":8061, "hits":2721},
 "Ruth":{"atBats":8399, "hits":2873},
 "Williams":{"atBats":7706, "hits":2654}}

我想找到这三位玩家中点击率最高的游戏。

所需的输出:

The most hits by one of the
players was 2873.

我的输入:

max(players.hits())
maximum = max(players,key=players.get)
max(players,key=players.get)

但是我只得到诸如以下的错误:

TypeError: '>' not supported between instances of 'dict' and 'dict'

我需要更改什么?

iz_

您要使用列表推导或生成器表达式仅遍历命中数:

players= {"Gehrig":{"atBats":8061, "hits":2721},
 "Ruth":{"atBats":8399, "hits":2873},
 "Williams":{"atBats":7706, "hits":2654}}

max(player["hits"] for player in players.values())
# 2873

如果您想查看哪个玩家的点击次数最多:

max(players.keys(), key=lambda p: players[p]["hits"])
# 'Ruth'

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章