gpt4 book ai didi

python - 如何以相反的顺序循环列表并跳过最后一个元素

转载 作者:太空宇宙 更新时间:2023-11-04 00:10:24 27 4
gpt4 key购买 nike

我知道我可以让 for i in x[::-1]: 以相反的顺序遍历列表。但是如果我想跳过最后一个元素然后从高到低遍历怎么办? for i in x[-1:0:-1] 不起作用

x = [1,2,3,4,5]
=> 4,3,2,1 # desired

for i in x[-1:-1]:
print(i)

# it does not work

最佳答案

您需要从 -2 开始,因为 -1 从最后一个元素开始:

for i in x[-2::-1]:
print(i)

或者,您可以将 reversed 与列表切片一起使用:

for i in reversed(x[:-1]):
print(i)

关于python - 如何以相反的顺序循环列表并跳过最后一个元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52657192/

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