python_元組_基本操做

元組的經常使用操做

在 python 中,提供了2個操做元組的 函數

info.count  info.index

info.count 獲取某一個數據在元組中出現的次數

info.index 獲取某一個數據在元組中對應的索引下標

1 info_tuple = ("zhangsan",18,1.75,1.75)
2 
3 #1.取值和取索引
4 print(info_tuple[0])
5 print(info_tuple.index(18))
6 #2.統計計數
7 print(info_tuple.count(1.75))
8 #3.統計元組中包含元素的個數
9 print(len(info_tuple))
相關文章
相關標籤/搜索