一、英文
1.安装nltk,导入Wordnet,
Python版本3.5
from nltk.corpus import wordnet as wn
2.同义词集的定义
car.n.01 是car的一个名词意义,被称之为同义词集,也就是意义相同的词(或词条)的集合。这里的’dog.n.01’指:dog的第一个名词意思;’chase.v.01’指:chase的第一个动词意思,后面我们可以用definition()这个对同义词集进行解释:
print( wn.synset('apple.n.01').definition())
fruit with red or yellow or green skin and sweet to tart crisp whitish flesh
3.查找同义词集的所有词
print(wn.synset('car.n.01').lemma_names())
['car', 'auto', 'automobile', 'machine', 'motorcar']
4.进行造句
print