|
__init__(self,
*args,
**kw)
x.__init__(...) initializes x; see x.__class__.__doc__ for
signature |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
index(self,
element)
L.index(value, [start, [stop]]) -> integer -- return first
index of value |
source code
|
|
|
extend(self,
elements)
extend list by appending elements from the iterable |
source code
|
|
|
|
|
pop(self,
position=-1)
remove and return item at index (default last) |
source code
|
|
|
|
|
|
|
sort(self,
key=' frontend ' )
stable sort *IN PLACE*; cmp(x, y) -> -1, 0, 1 |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Inherited from list :
__ge__ ,
__getattribute__ ,
__gt__ ,
__hash__ ,
__le__ ,
__lt__ ,
__ne__ ,
__new__ ,
__repr__ ,
__reversed__ ,
__rmul__
Inherited from object :
__delattr__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__ ,
__str__
|