Could anybody please tell me what are the packages required to run the below commands??
import nltk
from nltk.corpus import wordnet
v = 'go'
present = present_tense(v)
I got an error saying-
NameError: name 'present_tense' is not defined
|
feedback
|
present_tensefunction, not importing an existing function. – Josh Rosen Mar 29 '11 at 22:24