remove_at method

remove_at(index)

Removes an item at the specified index.

def remove_at(self, index: int):
    ...
ParameterTypeDescription
indexintThe zero based index.

See Also