序對 (tuple) 屬於不可變 (mutable) 的序列 (sequence) 型態,可進行以下序列通用的計算
計算 | 描述 |
x in s | 判斷 x 是否在 s 中 |
x not in s | 判斷 x 是否不在 s 中 |
s + t | 連接 s 及 t |
s * n, n * s | 將 s 重複 n 次連接 s 本身 |
s[i] | 取得索引值 i 的元素 |
s[i:j] | 取得索引值 i 到 j 的子序列 |
s[i:j:k] | 取得索引值 i 到 j ,間隔 k 的子序列 |
len(s) | 回傳 s 的元素個數 |
min(s) | 回傳 s 中的最小值 |
max(s) | 回傳 s 中的最大值 |
s.index(i) | 取得 s 中第一次出現 i 的索引值 |
s.count(i) | 累計 s 中 i 出現的個數 |
序對是用小括號為起來的複合資料型態,裡頭的元素以逗號分開,舉例示範如下
a = (3, 6, 1, 4, 9, 7, 2, 5, 8)
print("a: ", a)
print("6 in a:", 6 in a)
print("6 not in a:", 6 not in a)
print("a + a: ", a + a)
print("a * 2: ", a * 2)
print("a[6]: ", a[6])
print("len(a): ", len(a))
print("max(a): ", max(a))
print("min(a): ", min(a))
print("a.index(2): ", a.index(2))
print("a.count(2): ", a.count(2))
# 《程式語言教學誌》的範例程式
# http://pydoing.blogspot.com/
# 檔名:tupletype.py
# 功能:示範 Python 程式
# 作者:張凱慶
# 時間:西元 2010 年 12 月
執行結果如下
中英文術語對照 |
序對 | tuple |
不可變 | immutable |
序列 | sequence |
方法 | method |
內建型態
- 數字型態 int float complex 按一下展開目錄
- 迭代器型態
- 序列型態 按一下展開目錄
- 字串 str 按一下展開目錄
- str.capitalize()
- str.center(width[, fillchar])
- str.count(sub[, start[, end]])
- str.encode(encoding="utf-8", errors="strict")
- str.endswith(suffix[, start[, end]])
- str.expandtabs([tabsize])
- str.find(sub[, start[, end]])
- str.format(*args, **kwargs)
- str.index(sub[, start[, end]])
- str.isalnum()
- str.isalpha()
- str.isdecimal()
- str.isdigit()
- str.isidentifier()
- str.islower()
- str.isnumeric()
- str.isprintable()
- str.isspace()
- str.istitle()
- str.isupper()
- str.join(iterable)
- str.ljust(width[, fillchar])
- str.lower()
- str.lstrip([chars])
- static str.maketrans(x[, y[, z]])
- str.partition(sep)
- str.replace(old, new[, count])
- str.rfind(sub[, start[, end]])
- str.rindex(sub[, start[, end]])
- str.rjust(width[, fillchar])
- str.rpartition(sep)
- str.rsplit([sep[, maxsplit]])
- str.rstrip([chars])
- str.split([sep[, maxsplit]])
- str.splitlines([keepends])
- str.startswith(prefix[, start[, end]])
- str.strip([chars])
- str.swapcase()
- str.title()
- str.translate(map)
- str.upper()
- str.zfill(width)
- range
- 串列 list 按一下展開目錄
- 序對 tuple
- 字節 bytes 按一下展開目錄
- 字節陣列 bytearrary 按一下展開目錄
- 集合型態 set frozenset 按一下展開目錄
- 配對型態 dict 按一下展開目錄
1 則留言:
"序對 (tuple) 屬於不可變 (mutable)"
筆誤了,tuple 為 immutable sequence
張貼留言