作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
为了解决这个问题,我已经缩短了它,但代码如下所示:
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/
我是一名优秀的程序员,十分优秀!