如何在Python中使用nltk和WordNet获取单词的过去时?
运行以下命令需要哪些软件包?
代码
import nltk
from nltk.corpus import wordnet
v = 'go'
present = present_tense(v)
I got an error saying-
错误信息
名称错误:名称“present_tense”未定义
What are the packages required to run the below commands?
Code
import nltk
from nltk.corpus import wordnet
v = 'go'
present = present_tense(v)
I got an error saying-
Error message
NameError: name 'present_tense' is not defined
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试:
import en
而不是:
import nltk
您可以尝试:
en.verb.present(v)
而不是:
present_tense(v)
en 包来自 NodeBox English Linguistics库
演示站点:http://wnbot.com/wordnet/stackoverflow.py
草稿源代码列表:
此源代码列表是仅用于教育和讨论目的的草稿。
You may try:
import en
instead of:
import nltk
You may try:
en.verb.present(v)
instead of:
present_tense(v)
The en package is from the NodeBox English Linguistics library
Demo site: http://wnbot.com/wordnet/stackoverflow.py
Draft source code listing:
This source code listing is a draft for educational and discussion purposes only.