remove_child method

remove_child

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

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

remove_child

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