gpt4 book ai didi

Python-如何比较字典列表上 FOR 循环中 IF 语句中的键值?

转载 作者:行者123 更新时间:2023-11-30 23:38:23 24 4
gpt4 key购买 nike

为了解决这个问题,我已经缩短了它,但代码如下所示:

total1=0
total2=0
total3=0
score1=20
score2=30
score3=40


players = [{'user': 'Player1', 'total': total1, 'score': score1},
{'user': 'Player2', 'total': total2, 'score': score2},
{'user': 'Player3', 'total': total3, 'score': score3}]

for i in players:
if players[i]['score'] <= 30:
***code goes here***

我收到此类型错误:列表索引必须是整数,而不是字典

如何表达“如果每个玩家的得分值 <= 30”?

如果我只写 printplayers[0]['score'] 我得到 20。如果我写 printplayers[1]['score'] 我得到30,但为什么我不能将它放在 for 循环中并让“i”作为数字?

提前致谢!

最佳答案

第一个"for" iterates在列表“players”上,所以每个元素都是字典:

for player in players:
if player['score'] <= 30:
...

关于Python-如何比较字典列表上 FOR 循环中 IF 语句中的键值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14612085/

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