Python获取索引列表和元组:list.index(),tuple.index()

示例

list并tuple具有index-method来获取元素的位置:

alist = [10, 16, 26, 5, 2, 19, 105, 26]
# 在列表中搜索16
alist.index(16) # 1
alist[1]        # 16

alist.index(15)

ValueError:15不在列表中

但是只返回第一个找到的元素的位置:

atuple = (10, 16, 26, 5, 2, 19, 105, 26)
atuple.index(26)   # 2
atuple[2]          # 26
atuple[7]          # 26 - is also 26!