【发布时间】:2020-03-13 10:47:13
【问题描述】:
我想要一个包含常用英文单词的文本文件,但其中不应出现缩写词或首字母缩略词。有没有可能得到那本词典? 任何帮助表示赞赏!
【问题讨论】:
标签: python dictionary nlp stanford-nlp wordnet
我想要一个包含常用英文单词的文本文件,但其中不应出现缩写词或首字母缩略词。有没有可能得到那本词典? 任何帮助表示赞赏!
【问题讨论】:
标签: python dictionary nlp stanford-nlp wordnet
您可以从 nltk 包中检索它
import nltk
from nltk.corpus import stopwords
set(stopwords.words('english'))
【讨论】: