I have a list of strings in python.
list = [ "Sentence1. Sentence2...", "Sentence1. Sentence2...",...]
I want to remove stop words and count occurrence of each word of all different strings combined. Is there a simple way to do it?
I am currently thinking of using CountVectorizer() from scikit and than iterating for each word and combining the results