class documentation

class BabelTokenWord:

View In Hierarchy

Represents the token unit which can be used to build sentences.

Method __init__ init method
Instance Variable end The end position.
Instance Variable lemma The lemma of the inflected form in the string range.
Instance Variable start The start position.
Method __eq__ Undocumented
Method __hash__ Undocumented
Method __lt__ Undocumented
Method __repr__ Undocumented
Method __str__ Undocumented
def __init__(self, start, end, lemma):

init method

Parameters
start:intThe start position.
end:intThe end position.
lemma:strThe lemma of the inflected form in the string range.
end: int =

The end position.

lemma: str =

The lemma of the inflected form in the string range.

start: int =

The start position.

def __eq__(self, other):

Undocumented

def __hash__(self):

Undocumented

def __lt__(self, other):

Undocumented

def __repr__(self):

Undocumented

def __str__(self):

Undocumented