Python元组
Posted qhdxqxx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python元组相关的知识,希望对你有一定的参考价值。
元组不能修改,使用小括号进行创建。
操作
操作 |
描述 |
tuple[index] |
获取元组中指定索引的值 |
del tuple |
删除元组 |
len(tuple) |
获取元组中元素的个数 |
tuple1+tuple2 |
连接两个元组 |
tuple*n |
元组复制 |
item in tuple |
元组是否存在 |
内置函数
函数 |
描述 |
cmp(tuple1,tuple2) |
比较两个元组的元素 |
len(tuple) |
计算元组元素个数 |
max(tuple) |
返回元组中元素最大值 |
min(tuple) |
返回元组中元素最小值 |
tuple(seq) |
将列表转换为元组 |
以上是关于Python元组的主要内容,如果未能解决你的问题,请参考以下文章
Python中的元组(Tuple)
python(9):元组
Python 元组
python010 Python3 元组
Python 元组
Python学习篇 Python中的元组