I am trying to start a project of sentiment analysis and I will use the stop words method. I made some research and I found that nltk have stopwords but when I execute the c
import nltk nltk.download('stopwords') from nltk.corpus import stopwords STOPWORDS = set(stopwords.words('english'))