如何从WordNet中检索Word的定义

时间:2017-06-10 13:52:34

标签: python nltk wordnet

我试图找到一种方法从NLTK中获取WordNet中给定单词的定义。我尝试了下面的代码,但是我收到一条错误,说'WordNetCorpusReader'对象没有属性'定义':

button1=Button(root,width=80,height=200)
image1=PhotoImage(file="/home/imagefolder/1.png")
button1.config(image=self.image1)
button1.image=image1
button.pack(side=left)

我试图查看很多书,但没有找到相关信息。

1 个答案:

答案 0 :(得分:1)

https://pythonprogramming.net/wordnet-nltk-tutorial/,我认为答案是:

from nltk.corpus import wordnet


syns = wordnet.synsets("game")
print(syns[0].definition())