NLTK has by default a bunch of words that it considers to be stop words. It can be accessed via the NLTK corpus with:
from nltk.corpus import stopwords
To check the list of stop words stored for english language :
stop_words = set(stopwords.words("english"))
print(stop_words)
Exam...