remove_at method

remove_at(index)

Removes the element at the specified index.

def remove_at(self, index: int):
    ...
ParameterTypeDescription
indexintThe zero-based index of the element.

See Also