Удаление всех стоп-слов из каждого твита - PullRequest
0 голосов
/ 12 июля 2020

Я хочу удалить все стоп-слова в каждом твите, но я получаю эту ошибку ниже. Я пытаюсь найти решения, чтобы понять это, но не нашел.

stop_words = set(stopwords.words('english'))
print(stop_words)
nltk.download('punkt')
for all_words in words_in_tweet:
for a word in all_words:
#this is the error

File "<ipython-input-59-ade5bcf99259>", line 3
    for a word in all_words:
             ^
SyntaxError: invalid syntax

1 Ответ

1 голос
/ 12 июля 2020

Как сказал jdaz , ошибку invalid syntax можно исправить, изменив

for a word in all_words:
    ...

на

for word in all_words:
    ...
...