我在创建的一个函数中遇到了一个非常奇怪的问题,该函数在类别中搜索单词,如果该单词不在类别中,则删除该类别。由于一些非常神秘的原因,我总是收到错误消息:
list index out of range
我明白这个错误意味着什么,但我无法理解为什么。我的代码如下:
def check_cat(input, list_of_words, categories):
"""if a word is not in the possible set of words of a class, cannot be in this class"""
possible_cat = list_of_words
categories_copy = categories
for j in range(len(list_of_words)):
for i in input:
if i not in list_of_words[j][:,1]:
possible_cat.pop(j)
categories_copy = np.delete(categories_copy,j)
else:
pass
哪里categories = array(['culture', 'politics', 'sports'], dtype='|S8') 和
list_of_words =
[array([['0.14285714285714285', 'ball'],
['0.2857142857142857', 'cart'],
['0.14285714285714285', 'drama'],
['0.14285714285714285', 'opera'],
['0.2857142857142857', 'theater']], dtype='|S32'),
array([['0.25', 'decision'],
['0.5', 'drama'],
['0.25', 'strategy']], dtype='|S32'),
array([['0.2857142857142857', 'ball'],
['0.14285714285714285', 'cart'],
['0.2857142857142857', 'goal'],
['0.14285714285714285', 'player'],
['0.14285714285714285', 'strategy']], dtype='|S32')]
我真正不明白的是,当我在函数/无函数的“外部”执行代码时,它会起作用。但是通过一个函数,我得到了错误:
File "<ipython-input-110-b499e8f5d937>", line 7, in check_cat
if i not in list_of_words[j][:,1]:
IndexError: list index out of range
在我看来,索引 j 在 list_of_words 的范围内,因为我在其中循环......任何帮助将不胜感激。
米琪卡哇伊
相关分类