<languages />
❮元组方法
搜索值8的第一次出现,并返回其位置:
thistuple = (1, 3, 7, 8, 7, 5, 4, 6, 8, 5) x = thistuple.index(8) print(x)
The index() 方法查找指定值的第一次出现。
index()
The index() 如果找不到该值,则方法引发异常。
tuple.index(value)