Write a program to remove the stop words from a text of 50 words of your choice. code example
Example: for loop get rid of stop words python
list(filter(lambda word: word not in stop_words, df.cleaned[0]))
list(filter(lambda word: word not in stop_words, df.cleaned[0]))