gpt4 book ai didi

python - While循环-IndexError : list assignment index out of range

转载 作者:行者123 更新时间:2023-12-01 00:50:06 24 4
gpt4 key购买 nike

当我尝试将 while 循环与列表结合使用时,我不断收到索引错误。

我前一段时间写了代码,回来看它,但就是无法集中注意力来发现我的错误。显然,该错误与我的列表索引太小或太大有关。

indexes = []
#Or indexes[0], but this threw another error
indexes.append(decoded.find(special_string))

x=1
while indexes[x-1] > 0:
total = sum(indexes)
indexes[x] = decoded.find(special_string, total)
x+=1

print(indexes)

我的目标是找到字符串中的所有子字符串(special_string)并获取它们的索引(如果您知道更简单的方法,请告诉我)。我想将所有索引写入列表以供进一步使用。

最佳答案

我认为您需要做的唯一更改是:

indexes[x]=decoded.find(special_string,total)至:

indexes.append(decoded.find(special_string,total))

您无法分配索引[x],因为它不存在。

关于python - While循环-IndexError : list assignment index out of range,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56635015/

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