Method summary
- __delitem__(self, index)
- __getitem__(self, index)
- __init__(self, list)
- __len__(self)
- __setslice__(self, i, j, values)
- index(self, value)
- insert(self, index, value)
Methods
- __delitem__(self, index)
Deletes the item at a specified index.
- __getitem__(self, index)
Returns the value at a specified index in the list.
- __init__(self, list)
- __len__(self)
Returns the length of the list.
- __setslice__(self, i, j, values)
Sets a slice of a list to the contents of a specified sequence.
- index(self, value)
Returns the index of the first occurence of the specified value in the list.
- insert(self, index, value)
Inserts a value at a specified index in the list.