nltk.tree.immutable module¶
- class nltk.tree.immutable.ImmutableMultiParentedTree[source]¶
Bases:
ImmutableTree
,MultiParentedTree
- class nltk.tree.immutable.ImmutableParentedTree[source]¶
Bases:
ImmutableTree
,ParentedTree
- class nltk.tree.immutable.ImmutableProbabilisticTree[source]¶
Bases:
ImmutableTree
,ProbabilisticMixIn
- class nltk.tree.immutable.ImmutableTree[source]¶
Bases:
Tree
- pop(v=None)[source]¶
Remove and return item at index (default last).
Raises IndexError if list is empty or index is out of range.
- set_label(value)[source]¶
Set the node label. This will only succeed the first time the node label is set, which should occur in ImmutableTree.__init__().
- sort()[source]¶
Sort the list in ascending order and return None.
The sort is in-place (i.e. the list itself is modified) and stable (i.e. the order of two equal elements is maintained).
If a key function is given, apply it once to each list item and sort them, ascending or descending, according to their function values.
The reverse flag can be set to sort in descending order.