元组就是不可变的列表,列表中除了可变的操作,其他的操作都适用于元组
元组值:使用()将元素包含起来,多个元素之间用,隔开,比如:(1,2,3,'sad')
元素的类型可以是任何类型
改、增、删相关操作不能作用于元组
colors = ('red', 'gren', 'yellow', 'purple', 'blue', 'black')
# find
print(colors[1])
print(colors[0:3])
print(colors[0::2])
for item in colors:
print(item)
# len
print(len(colors))
# in , not in
print('red' in colors)
# + and *
print((2, 3) + (4, 5))
元组特有查找方法
names = ('Tom', 'Lucy', 'Lisa')
"""
x, y, z = names
print(x, y, z)
"""
first, *midel, last = names # 通过变量名前加*可以把变量名变成列表,获取多个元素
print(first, midel, last)
网友评论