download english stopwords from nltk
import nltk nltk.download('stopwords') stopwords = set(nltk.corpus.stopwords.words('english')) print(stopwords)