gpt4 book ai didi

python - 如何找到 JSON 列表中的哪一项对于 Python 中的给定属性具有最大值?

转载 作者:行者123 更新时间:2023-11-28 22:49:06 27 4
gpt4 key购买 nike

<分区>

我正在使用来自 SFG WorldCup API 的 JSON 数据.

我需要做的是找到给定球队在给定比赛中的最近进球。为此,我需要按 away_team_events 属性的数组的每个元素中 attribute 键的值进行排序。

让我举例说明。

这是正在进行的(在撰写本文时)法国对瑞士的法国示例 JSON。

"away_team_events": [
{
"id": 276,
"type_of_event": "goal",
"player": "Giroud",
"time": "17"
},
{
"id": 277,
"type_of_event": "goal",
"player": "Matuidi",
"time": "18"
},
{
"id": 278,
"type_of_event": "penalty-wrong",
"player": "Benzema",
"time": "32"
},
{
"id": 279,
"type_of_event": "goal",
"player": "Valbuena",
"time": "40"
},
{
"id": 281,
"type_of_event": "substitution-in",
"player": "Pogba",
"time": "63"
},
{
"id": 282,
"type_of_event": "substitution-in",
"player": "Koscielny",
"time": "66"
},
{
"id": 283,
"type_of_event": "goal",
"player": "Benzema",
"time": "67"
}
]

所以我在这里需要做的是找出哪个“id”属性最大,因为那将是最新的目标。

如何按这样的特定属性排序?

我看过 this question ,但我真的无法理解答案。

编辑:重新措辞,很抱歉造成混淆。

我不一定需要重新排列它们,但我如何确定列表中的哪个项目具有最大 ID 并使用它?

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