我有一个大小为155的数组,我的程序包括你输入一个单词然后在数组中搜索单词。
但是,当我输入'176'
这是数组中的最后一个单词时,会出现list index out of range
错误
这是为什么?
i = resList.index(resiID) # --searchs list and give number where found, for last word gives 155
print len(resultss) # --prints 155
colour = resultss[i] # --error given on this line
答案 0 :(得分:2)
这是预期的行为。如果您的list
len
x
,则x
索引未定义。
例如:
lst = [0,1]
print len(lst) # 2
print lst[0] # 0
print lst[1] # 1
print lst[len(lst)] #error
答案 1 :(得分:1)
您的索引超出范围。以下是列表索引的工作方式:
>>> a = list(range(10))
>>> a
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> i = a.index(9)
>>> i
9
>>> a[i]
9
>>> a[10]
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
IndexError: list index out of range
如果索引的长度为i
,则可以使用0..i-1
范围内的任何索引。最后一个有效索引是len(mylist) - 1
。
155超出范围,可能是因为您在一个列表/可迭代(resList
)中获取索引并将其用作不同/较小列表/可迭代(resultss
)的索引。