t = (1)
y = (1,)
print(type(t), type(y))
<class ‘int’> <class ‘tuple’>
从列表转换元组:
l = [1, 2, 3, 4]
changTuple = tuple(l)
print(changTuple, type(changTuple))
元组不能被增加,删除,修改。
查
获取单个元素: tuple[index]
获取
tuple.count(item)
统计元组中指定元素的个数
tuple.index(item)
获取元组中指定元素的索引
len(tup)
返回元组中元素的个数
max(tup)
返回元组中元素最大的值
min(tup)
返回元组中元素最小的值
t = (1, 2, 3, 4, 3, 2)
c = t.count(2)
print(c)
idx = t.index(2)
print(idx)
length = len(t)
maxNum = max(t)
minNum = min(t)
print(maxNum, minNum)
2
1
4 1
判定
元素 in 元组
元素 not in 元组
比较运算符
==
>
<
拼接
print((1, 2) * 3)
print((1, 2) + (3, 4))
(1, 2, 1, 2, 1, 2)
(1, 2, 3, 4)
拆包
a, b = (10, 20)
print(a, b)
10 20