Trees | Indices | Help |
|
---|
|
object --+ | list --+ | OneIndexedList
A list that starts at one instead of zero
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
item |
|
||
int or slice |
|
||
int |
|
||
|
|||
|
|||
|
|||
|
|||
Inherited from Inherited from |
|
|||
Inherited from |
|
|||
|
x[y]
|
x[i]=y
|
del x[y]
|
x[i:j] Use of negative indices is not supported.
|
x[i:j]=y Use of negative indices is not supported.
|
del x[i:j] Use of negative indices is not supported.
|
L.index(value, [start, [stop]]) -> integer -- return first index of value. Raises ValueError if the value is not present.
|
insert object before index
|
remove and return item at index (default last). Raises IndexError if list is empty or index is out of range.
|
Convert a list index or slice from 0-indexed to 1-indexed
|
Convert a list index from 0-indexed to 1-indexed
|
x+y
|
x*n
|
x+=y
|
x*=y
|
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Tue Apr 26 05:42:16 2016 | http://epydoc.sourceforge.net |