我删除了停用词,现在我想执行情感分析,但是我的代码显示错误。
导入字符串
从nltk.corpus导入停用词
ensw = stopwords.words('english')
从nltk.tokenize导入word_tokenize,send_tokenize
从textblob导入TextBlob
导入csv
以open('Huawei Japan Times.csv','r')作为csv_file:
csv_reader = csv.reader(csv_file)
next(csv_reader)
for row in csv_reader:
sentence = row[0]
blob = TextBlob(sentence)
new_row = blob.lower()
token = TextBlob(sentence)
article_token = token.words
no_stop = [item for item in article_token if item not in ensw]
print(no_stop)
print()
此后,我不知道如何进行情感分析。