Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道如何通过 Wordnet 中的多义计数(通过 NLTK)获得一个单词的不同含义的数量。但我想知道是否也可以返回这些不同的感觉,而不仅仅是数字,因为我想在脚本的其余部分使用这些感觉。有人有线索吗?谢谢!
这应该有效:
def polysemy(word): return wn.synsets(word)
你得到了感官的数量,因为你将这个len()函数应用到你的感官列表中。
len()