Reputation: 19
I want a text file which contains commonly occuring English words but abbreviations or acronyms should not be present there. Is it possible to get that dictionary? Any help is appreciated!!
Upvotes: 0
Views: 155
Reputation: 1871
You can retrieve this just from nltk
package
import nltk
from nltk.corpus import stopwords
set(stopwords.words('english'))
Upvotes: 1