|
|
|
|
|
|
|
append(self,
value)
Add an item to this list, like list.append . |
|
|
|
clear(self)
Remove all items from this list, like list.clear . |
|
|
|
copy(self,
*ranged)
Make a shallow copy of this list. |
|
|
|
extend(self,
values)
Add one or more items to this list, like list.extend . |
|
|
|
insert(self,
index,
value)
Insert an item into this list, like list.insert . |
|
|
|
pop(self,
index=-1)
Remove an item from this list, like list.pop . |
|
|
|
remove(self,
value,
identical=False)
Remove an item from this list, like list.remove . |
|
|
|
reverse(self)
Reverse this list in-place, like list.reverse . |
|
|
Inherited from tuples.Tuple :
__contains__ ,
__eq__ ,
__getitem__ ,
__iter__ ,
__len__ ,
__ne__ ,
__reversed__ ,
count ,
index
Inherited from baseTypes._Type0 :
__repr__ ,
__str__ ,
type2strepr
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__ ,
__sizeof__ ,
__subclasshook__
|