|
|
|
__contains__(self,
value) |
|
|
|
|
|
|
|
|
|
__iter__(self)
Yield the items in forward order. |
|
|
|
__len__(self)
Return the number of items. |
|
|
|
|
|
__reversed__(self)
Yield the items in reverse order. |
|
|
|
__setitem__(self,
index,
value) |
|
|
|
|
|
|
|
copy(self,
*ranged)
Make a shallow copy of this tuple. |
|
|
|
count(self,
value,
identical=False)
Count the number of occurances of an item, like
tuple./list.count . |
|
|
|
|
|
index(self,
value,
identical=False)
Find an item, like tuple./list.index . |
|
|
|
insert(self,
index,
value) |
|
|
|
|
Inherited from baseTypes._Type0 :
__repr__ ,
__str__ ,
type2strepr
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__ ,
__sizeof__ ,
__subclasshook__
|