Python元组
Python的元组与列表类似,不同之处在于元组的元素不能修改。
元组使用小括号,列表使用方括号。
元组创建很简单,只需要在括号中添加元素,并使用逗号隔开即可。
tup1 = ('physics', 'chemistry', 1997, 2000)
tup2 = (1, 2, 3, 4, 5 )
tup3 = "a", "b", "c", "d"
元组内置函数
- cmp(tuple1, tuple2) 比较两个元组元素。
- len(tuple) 计算元组元素个数
- max(tuple) 返回元组中元素最大值
- min(tuple) 返回元组中元素最小值
- tuple(seq) 将列表转换为元组
来源:oschina
链接:https://my.oschina.net/u/3696975/blog/3210671