Write a program to remove stop words from a given text code example
Example: nltk stopwords english
from nltk.corpus import stopwords
stopWords = set(stopwords.words('english'))
from nltk.corpus import stopwords
stopWords = set(stopwords.words('english'))