【Python】Python - Tuple的函數。Python Tuple methods.
【Python】Python - Tuple的函數。Python Tuple methods.
Tuple 方法
Python 有2個內建方法讓我們可以用來操作與使用tuples。
方法 | 描述 |
---|---|
count() | 回傳某個值出現在tuple的次數。 |
index() | 搜尋tuple內的某個值的索引值。 |
範例
回傳5出現在tuple內的次數。
Return the number of times the value 5 appears in the tuple:
thistuple = (1, 3, 7, 8, 7, 5, 4, 6, 8, 5)
x = thistuple.count(5)
print(x)
上面輸出: 2
範例
搜尋並回傳第一個值為8的索引值。
thistuple = (1, 3, 7, 8, 7, 5, 4, 6, 8, 5)
x = thistuple.index(8)
print(x)
上面輸出: 3
留言
張貼留言