创建包含英语单词的字典

问题描述 投票:-1回答:1

我想要一个文本文件,其中包含常见的英语单词,但不应在其中出现缩写或首字母缩写词。可以得到那本字典吗?任何帮助表示赞赏!

python dictionary nlp stanford-nlp wordnet
1个回答
1
投票

您可以仅从nltk包中检索到它

import nltk
from nltk.corpus import stopwords
 set(stopwords.words('english'))
© www.soinside.com 2019 - 2024. All rights reserved.