元组tuple

不可以修改内容
1、函数
tuple(seq)//将列表转换为元组
min(tuple)//返回元组中元素最小值
max(tuple)//返回元组中元素最大值
len(tuple)//计算元组元素个数
2、查询和列表一样

原文地址:https://www.cnblogs.com/lens/p/4611205.html