FrankTan
FrankTan

Reputation: 1686

Tense of a verb

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

Answers (1)

Suzana
Suzana

Reputation: 4410

You cannot do this with WordNet. Try the NodeBox Linguistics:

Input:

print en.verb.tense("was")

Output:

>>> 1st singular past

Upvotes: 1

Related Questions