06_Python 元組
元組是Python中的一種不可變容器, 元組一旦建立,元組中的元素將不可改變。
1.建立元組
建立元組有()和tuple()兩種方法。元組中的元素可為數字、字串、列表、元組、集合、字典、布林值或物件等等。
()方法
- ():建立空元組。
- (value,):建立只含一個元素的元組。
- (value1,value2,…,valuen):建立包含多個元素的元組。
t1 = ()
t2 = (1,)
t3 = (1,2,3,True,["a","b"])
print(t1) # ()
print(t2) # (1,)
print(t3) # (1, 2, 3, True, ['a', 'b'])
tuple()方法
- tuple():建立空元組。
- tuple(iterable):根據可迭代物件建立元組。
t1 = tuple()
t2 = tuple((1,))
t3 = tuple([1])
t4 = tuple([1,2,3,4,5])
print(t1) # ()
print(t2) # (1,)
print(t3) # (1,)
print(t4) # (1, 2, 3, 4, 5)
2.元組的常用方法
方法 | 說明 |
---|---|
tuple.count (value) | 統計元組中value出現的次數。如果value不存在,則返回0。 |
tuple.index (value, start=0) | 在元組中查詢value第一次出現的索引,如果value不存在則報錯。start=0表示從第0個位置開始查詢。 |
len (tuple) | 求元組的元素個數。 |
t = (1,2,3,4,5,2,3,4,2,3,4)
print(t.count(2)) # 3
find_value = 10
try:
idx = t.index(find_value)
print("idx={}".format(idx))
except:
print("{} is not in t".format(find_value))
# 10 is not in t
print(len(t)) # 11
3.遍歷元組
元組的遍歷同列表的遍歷一樣,可按索引遍歷、按值遍歷、同時遍歷索引和值。關於如何遍歷列表請檢視之前寫的這篇博文:05_Python 列表
相關文章
- 元組
- Python 元組Python
- 列表和元組
- 十、元組、集合
- 元組遍歷
- Python元組tuplePython
- 字典,元組,集合
- Python tuple(元組)Python
- python-元組Python
- 列表與元組
- python的元組Python
- python元組和列表Python
- Python速通(元組)Python
- JavaScript運算元組JavaScript
- Python元組詳解Python
- 元組tuple的方法
- 認識Python 元組Python
- Python基礎_元組Python
- Python 學習之元組Python
- 順序三元組
- Python 基礎 3 - 元組Python
- Python列表、元組、字典使用Python
- Python的元組()與字典{}Python
- Python基礎(05):元組Python
- 列表和元組的方法
- Python的元組()與字典 { }Python
- python元組的特點Python
- python命名元組如何理解Python
- 資料型別· 第1篇《元組和列表的效能分析、命名元組》資料型別
- js運算元組中資料排列組合JS
- python_列表——元組——字典——集合Python
- Python 學習之元組列表Python
- record:記錄(帶名元組)
- 2.列表_元組_字典_集合
- Python之列表&元組小練Python
- python元組與字典簡介Python
- python元組如何打包和解包Python
- Scala陣列、元組與集合陣列