元组的定义:
Tuple(元组)与列表类似,不同之处在于元组的 元素不能修改
创建空元组
元组中 只包含一个元素 时,需要 在元素后面添加逗号
In [5]: tuple = (1,)
In [6]: tuple
Out[6]: (1,)
len(元组)
In [13]: len(tuple)
Out[13]: 1
(元组).count
In [14]: tuple = (1,2,3,4,1,2,1,)
In [15]: tuple
Out[15]: (1, 2, 3, 4, 1, 2, 1)
In [20]: tuple.count(1)
Out[20]: 3
元组[索引]从列表中取值
In [10]: a
Out[10]: (0, 1, 2, 3, 1, 2)
In [11]: a[2]
Out[11]: 2
元组.index(索引)获取数据第一次出现的索引
In [12]: a.index(3)
Out[12]: 3
使用 list 函数可以把元组转换成列表
In [26]: tuple
Out[26]: (1, 2, 3, 4, 1, 2, 1)
In [27]: list(tuple)
Out[27]: [1, 2, 3, 4, 1, 2, 1]
使用 tuple 函数可以把列表转换成元组
In [1]: list = [12]
In [2]: list
Out[2]: [12]
In [3]: tuple(list)
Out[3]: (12,)