gpt4 book ai didi

python - 遍历for循环python时如何检查以前的索引

转载 作者:行者123 更新时间:2023-11-28 19:35:25 24 4
gpt4 key购买 nike

我有一个有点随机的列表。

list  = [1,2,4,2,25,3,2,4,2,1,1,32,3,3,2,2,23,4,2,2,2,34,234,33,2,4,3,2,3,4,2,1,3,4,3]

我想遍历它并做这样的事情:

for item in list:
while item >=5:
if item = item_5_indexes_ago
print "its the same as it was 5 entries ago!"

显然,item_5_indexes_ago 不是有效的 python。我应该在这里替换什么?我想检查列表中的每个项目是否列表[5]==列表[1],如果列表[6]==列表[2],.....。

最佳答案

您还可以使用列表理解和enumerate 函数来获取元素:

[l for i, l in enumerate(list[:-5]) if l == list[i+5]]

关于python - 遍历for循环python时如何检查以前的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24149725/

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