gpt4 book ai didi

python - 有没有办法在 Python 中遍历列表的子部分

转载 作者:太空宇宙 更新时间:2023-11-03 12:11:57 27 4
gpt4 key购买 nike

所以对于一个有 1000 个元素的列表,我想从 400 循环到 500。你是怎么做到的?

我看不到使用 for each 和 for range 技术的方法。

最佳答案

for x in thousand[400:500]:
pass

如果你使用的是可迭代对象而不是列表,你应该使用 itertools :

import itertools
for x in itertools.islice(thousand, 400, 500):
pass

如果需要遍历thousand[500],则使用501作为后面的索引。即使 thousand[501] 不是有效索引,这仍然有效。

关于python - 有没有办法在 Python 中遍历列表的子部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/522430/

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