一、Python/ target=_blank class=infotextkey>Python元組 表達式
len((1, 2, 3))
3計算元素個數
(1, 2, 3) + (4, 5, 6)
(1, 2, 3, 4, 5, 6)
連接
('Hi!',) * 4
('Hi!', 'Hi!', 'Hi!', 'Hi!')復制
3 in (1, 2, 3)
True
元素是否存在
for x in (1, 2, 3):
print (x, end=" ")
1 2 3迭代
二、方法
1、len(tuple)
計算元組元素個數。
>>> tuple1 = ('google', 'Runoob', 'Taobao')
>>> len(tuple1)
3
>>>
2、max(tuple)
返回元組中元素最大值。
>>> tuple2 = ('5', '4', '8')
>>> max(tuple2)
'8'
>>>
3、min(tuple)
返回元組中元素最小值。
>>> tuple2 = ('5', '4', '8')
>>> min(tuple2)
'4'
>>>
4、tuple(iterable)
將可迭代系列轉換為元組。
>>> list1= ['Google', 'Taobao', 'Runoob', 'Baidu']
>>> tuple1=tuple(list1)
>>> tuple1
('Google', 'Taobao', 'Runoob', 'Baidu')
5、Sum(tuple) 求元素的和
Tupl01=(1,2,3,4,5,)
Sum_a=sum(tupl01)
Print(sum_a)(結果為15)