I have a list of stop words containing about 30 words and a set of articles.
I want to analyze each article and remove those stop words from it.
I am not sure if this is the most efficient way to do this.
for example, I can iterate over a stop list and replace a word in an article if it exists with a space, but this does not seem good.
thank
Elham source
share