from en import verb
print verb.tenses()
print verb.infinitive('argue')
['infinitive', 'present participle', 'past plural', '2nd singular present', '2nd singular past', 'past', '3rd singular present', 'past participle', '1st singular present', '1st singular past', '3rd singular past', 'present plural']
argue
I can't find a method that give all tenses of the verb. There is only one way to call each function: replace space from the list using verb object. How can I accomplish this?
The input: argue
. Output should be: arguing
,argued
,argue
..