定位元组中的项
与 list
相比,tuple
仅支持不尝试修改它的方法。
可以使用 index(x[, i[, j]])
方法在元组中定位项 x
,该方法返回项在索引 i
或之后以及索引 j
之前第一次出现的位置。如果未指定 i
和 j
,它们分别默认为 i=0
和 j=len(t)
。
python
>>> t = (34, 4, 6, 23, 4)
>>> t.index(4)
1
>>> t.index(4, 3)
4
>>> t.index(6, 1, 4)
2
计算项的出现次数
可以使用 count()
方法计算元组中某一项的出现次数。
python
>>> t = (34, 4, 6, 23, 4)
>>> t.count(4)
2
>>> t = ("it", "is", "it", "I")
>>> t.count("it")
2