from nltk.corpus import stopwords
stop_words = stopwords.words('english')
stop_words.extend('C:/Users/Amit/python scripts/stop (1)')
stop_words
wordcloud = WordCloud(stopwords=stop_words, background_color="white",max_words=100).generate(cleaned_text)
import matplotlib.pyplot as plt
plt.figure(figsize = (10,10))
plt.imshow(wordcloud, interpolation='bilinear')
plt.axis("off")
plt.show()
но здесь нет слов из моего вложения в блокнот. Cleaned_text - мои данные, stop (1) - мой список стоп-слов