gpt4 book ai didi

python - 在python中跳过for循环的第一个条目?

转载 作者:IT老高 更新时间:2023-10-28 12:24:44 25 4
gpt4 key购买 nike

在python中,我该怎么做:

for car in cars:
# Skip first and last, do work for rest

最佳答案

要跳过 Python 中的第一个元素,您可以简单地编写

for car in cars[1:]:
# Do What Ever you want

或跳过最后一个元素

for car in cars[:-1]:
# Do What Ever you want

您可以将此概念用于任何 sequence (但不适用于任何 iterable)。

关于python - 在python中跳过for循环的第一个条目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10079216/

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