作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个有点随机的列表。
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/
我是一名优秀的程序员,十分优秀!