Python 元组的定义以及常用函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 元组的定义以及常用函数相关的知识,希望对你有一定的参考价值。
定义(元组是有序的且值是不可重复的):
age=(11,22,33,44,55,33) 或 age=tuple((11,22,33,44,55)) 或 name = "a", "b", "c", "d";
#取值
print(age[2])
# 范围取值
print(age[1:4])
# 某个元素个数
print(len(age))
#元素是否在元组中
print(11 in age)
# 取元组的下标
print(age.index(33))
#元组连接
(1, 2, 3) + (4, 5, 6)
# 取某个元素在元组中的个数
print(age.count(33))
#
# 计算元组中最大的元素
max(age)
# 计算元组中最小的元素
min(age)
以上是关于Python 元组的定义以及常用函数的主要内容,如果未能解决你的问题,请参考以下文章
python学习笔记-day2-dict,tuple, string常用函数