Функция replaceWithHyponym выбирает слово из текста и заменяет его гипонимом, в результате чего индекс выходит за пределы диапазона

#python #nltk #wordnet Вопрос: self.lines.append([random.randint(10,700),random.randint(10,950), "Once there was a dog and a cat","l0"]) self.lines.append([random.randint(10,700),random.randint(10,950), "Who decided to have an extended natter","l1"]) Это анализируемый текст. def replaceWithHyponym(lines): ll = lines.pop(random.randrange(len(lines))) tokens…

Продолжить чтениеФункция replaceWithHyponym выбирает слово из текста и заменяет его гипонимом, в результате чего индекс выходит за пределы диапазона