insert method

insert

Inserts new behavior to a collection at the specified index.

def insert(self, index, item):
    ...
ParameterTypeDescription
indexintIndex where new behavior should be inserted.
itemIBehaviorBehavior to insert.

See Also