作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我尝试将 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/
我是一名优秀的程序员,十分优秀!