使用Wordnet Synset的定义方法无法获得所需的输出

APD*_*APD 4 python owl nltk wordnet output

 from nltk.corpus import wordnet 
 syn=wordnet.synsets('cookbook')[0]
 print syn.definition
Run Code Online (Sandbox Code Playgroud)

预期产出:

'a book of recipes and cooking directions'
Run Code Online (Sandbox Code Playgroud)

实际产量:

bound method Synset.definition of Synset('cookbook.n.01')
Run Code Online (Sandbox Code Playgroud)

我无法查明代码中的错误,这会导致实际输出和预期输出之间的差异.

alv*_*vas 7

>>> from nltk.corpus import wordnet as wn
>>> wn.synsets('dog')[0]
Synset('dog.n.01')
>>> wn.synsets('dog')[0].definition
<bound method Synset.definition of Synset('dog.n.01')>
>>> wn.synsets('dog')[0].definition()
u'a member of the genus Canis (probably descended from the common wolf) that has been domesticated by man since prehistoric times; occurs in many breeds'
Run Code Online (Sandbox Code Playgroud)

这是因为Synset对象属性已更改为Synset函数,请参阅https://github.com/nltk/nltk/commit/ba8ab7e23ea2b8d61029484098fd62d5986acd9c