remove_child method

remove_child(self, node)

Removes the specified node from the current node’s children.


def remove_child(self, node):
    ...
ParameterTypeDescription
nodeEquationNodeNode to be deleted.

remove_child(self, index)

Removes the node at the specified index from the current node’s children.


def remove_child(self, index):
    ...
ParameterTypeDescription
indexintIndex of the node

See Also