gpt4 book ai didi

python - 我如何做一个 "for each",从列表的某个索引开始(Python)?

转载 作者:太空宇宙 更新时间:2023-11-04 06:44:38 25 4
gpt4 key购买 nike

假设我有这个列表:

thelist = ['apple','orange','banana','grapes']
for fruit in thelist:

这会遍历所有的水果。

但是,如果我想从橙色开始怎么办?而不是从苹果开始?当然,我可以做“如果...继续”,但一定有更好的方法吗?

最佳答案

for fruit in thelist[1:]:
...

这当然假设您知道从哪个索引开始。但您可以轻松找到索引:

for fruit in thelist[thelist.index('orange'):]:
...

关于python - 我如何做一个 "for each",从列表的某个索引开始(Python)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1762571/

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