gpt4 book ai didi

python - 在 Python for 循环中设置列表项

转载 作者:行者123 更新时间:2023-11-28 19:49:58 24 4
gpt4 key购买 nike

大家好

假设我有一个列表,我想列出该列表中的项目,然后打印出来,然后我会这样做。

list = ['a', 'b', 'c']

for item in list:
print item

这应该会导致这样。

a
b
c

足够简单。

我的问题是,当某个事件发生时,例如到达“b”,然后我希望循环继续迭代但从刚刚到达的点重新开始。因此输出将是这样的。

a
b
b
c

我曾尝试过一种解决方案,但没有奏效。

list = ['a', 'b', 'c']

for item in list:
print item

index = list.index(item)
if item == 'b':
item = list[index - 1]

我曾希望这会将项目设置为“a”,以便下一次迭代继续返回到“b”,但事实并非如此。

在此先感谢您的帮助。

最佳答案

为什么不是以下内容:

for item in lst:
dostuff()
if item=="b":
dostuff()

关于python - 在 Python for 循环中设置列表项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14981955/

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