我试图找到一种方法从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)
我试图查看很多书,但没有找到相关信息。
答案 0 :(得分:1)
看https://pythonprogramming.net/wordnet-nltk-tutorial/,我认为答案是:
from nltk.corpus import wordnet
syns = wordnet.synsets("game")
print(syns[0].definition())