Reputation: 1686
How do i find in wordnet or with a tool the tense of a verb ?
for example given:
input: happened -> output : past
input: will happen -> output: future
Upvotes: 2
Views: 1414
Reputation: 4410
You cannot do this with WordNet. Try the NodeBox Linguistics:
Input:
print en.verb.tense("was")
Output:
>>> 1st singular past
Upvotes: 1