Hi
Using Nltk and Wordnet how do i convert simple tense verb into its present, past or past participle form?
For example:
I want to write a function which would give me verb in expected form as follows.
v = 'go'
present = present_tense(v)
print present # prints "going"
past = past_tense(v)
print past # prints "went"
Any suggestion or help would be useful.
Thanks in advance.