當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Tuple index()用法及代碼示例


index() 方法返回元組中指定元素的索引。

用法:

tuple.index(element, start, end)

參數:

元組 index() 方法最多可以使用三個參數:

  • element- 要搜索的元素
  • start(可選) - 從此索引開始搜索
  • end(可選)- 搜索直到該索引的元素

返回:

  • index() 方法返回元組中給定元素的索引。
  • 如果未找到該元素,則會引發 ValueError 異常。

注意: index()方法隻返回匹配元素的第一次出現。

示例 1:查找元素的索引

# vowels tuple
vowels = ('a', 'e', 'i', 'o', 'i', 'u')

# index of 'e' in vowels
index = vowels.index('e')
print('The index of e:', index)

# element 'i' is searched
# index of the first 'i' is returned
index = vowels.index('i')

print('The index of i:', index)

輸出

The index of e: 1
The index of e: 2

示例 2:元組中不存在的元素的索引

# vowels tuple
vowels = ('a', 'e', 'i', 'o', 'u')

# index of'p' is vowels
index = vowels.index('p')
print('The index of p:', index)

輸出

ValueError: tuple.index(x): x not in tuple

示例 3:index() 的工作與開始和結束參數

# alphabets tuple
alphabets = ('a', 'e', 'i', 'o', 'g', 'l', 'i', 'u')

# index of 'i' in alphabets
index = alphabets.index('e')   # 2
print('The index of e:', index)

# 'i' after the 4th index is searched
index = alphabets.index('i', 4)   # 6
print('The index of i:', index)

# 'i' between 3rd and 5th index is searched
index = alphabets.index('i', 3, 5)   # Error!
print('The index of i:', index)

輸出

The index of e: 1
The index of i: 6
Traceback (most recent call last):
  File "<string>", line 13, in <module>
ValueError: tuple.index(x): x not in tuple

相關用法


注:本文由純淨天空篩選整理自 Python Tuple index()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。