Ayan Banerjee
Ayan Banerjee

Reputation: 19

Creating a dictionary which contains English words

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

Answers (1)

Thomas
Thomas

Reputation: 1871

You can retrieve this just from nltk package

import nltk
from nltk.corpus import stopwords
 set(stopwords.words('english'))

Upvotes: 1

Related Questions