verb_core module

inflex.verb_core.known_plural(word)[source]

True if word is known to be plural.

Parameters

word (str) – Input word.

Returns

True if word is known to be plural.

Return type

bool

inflex.verb_core.known_singular(word)[source]

True if word is known to be singular.

Parameters

word (str) – Input word.

Returns

True if word is known to be singular.

Return type

bool

inflex.verb_core.known_past(word)[source]

True if word is known to be past.

Parameters

word (str) – Input word.

Returns

True if word is known to be past.

Return type

bool

inflex.verb_core.known_past_part(word)[source]

True if word is known to be past participle.

Parameters

word (str) – Input word.

Returns

True if word is known to be past participle.

Return type

bool

inflex.verb_core.known_pres_part(word)[source]

True if word is known to be present participle.

Parameters

word (str) – Input word.

Returns

True if word is known to be present participle.

Return type

bool

inflex.verb_core.convert_to_plural(word)[source]

Convert word to plural form.

Parameters

word (str) – Input word or collocation.

Returns

The plural form of word.

Return type

bool

inflex.verb_core.convert_to_singular(word)[source]

Convert word to singular form.

Parameters

word (str) – Input word or collocation.

Returns

The singular form of word.

Return type

bool

inflex.verb_core.convert_to_past(word)[source]

Convert word to past form.

Parameters

word (str) – Input word or collocation.

Returns

The past form of word.

Return type

bool

inflex.verb_core.convert_to_pres_part(word)[source]

Convert word to present participle form.

Parameters

word (str) – Input word or collocation.

Returns

The present participle form of word.

Return type

bool

inflex.verb_core.convert_to_past_part(word)[source]

Convert word to past participle form.

Parameters

word (str) – Input word or collocation.

Returns

The past participle form of word.

Return type

bool

inflex.verb_core.is_plural(word: str)[source]

Detect whether word is in plural form.

Parameters

word (str) – Input word or collocation.

Returns

True if word is deemed plural.

Return type

bool

inflex.verb_core.is_singular(word: str)[source]

Detect whether word is in singular form.

Parameters

word (str) – Input word or collocation.

Returns

True if word is deemed singular.

Return type

bool

inflex.verb_core.is_past(word: str)[source]

Detect whether word is in past form.

Parameters

word (str) – Input word or collocation.

Returns

True if word is deemed past.

Return type

bool

inflex.verb_core.is_pres_part(word: str)[source]

Detect whether word is in present participle form.

Parameters

word (str) – Input word or collocation.

Returns

True if word is deemed present participle.

Return type

bool

inflex.verb_core.is_past_part(word: str)[source]

Detect whether word is in past participle form.

Parameters

word (str) – Input word or collocation.

Returns

True if word is deemed past participle.

Return type

bool