元组(Tuple)
元组是有序且不可更改的集合。在 Python 中,元组是用圆括号编写的。
实例
创建元组:
thistuple = ("apple", "banana", "cherry")
print(thistuple)
访问元组项目
实例
打印元组中的第二个项目:
thistuple = ("apple", "banana", "cherry")
print(thistuple[1])
负索引
负索引表示从末尾开始,-1 表示最后一个项目,-2 表示倒数第二个项目,依此类推。
实例
打印元组的最后一个项目:
thistuple = ("apple", "banana", "cherry")
print(thistuple[-1])
索引范围
您可以通过指定范围的起点和终点来指定索引范围。
指定范围后,返回值将是带有指定项目的新元组。
实例
返回第三、第四、第五个项目:
thistuple = ("apple", "banana", "cherry", "orange", "kiwi", "melon", "mango")
print(thistuple[2:5])
注释: 搜索将从索引 2(包括)开始,到索引 5(不包括)结束。 请记住,第一项的索引为 0。
Range of Negative Indexes
实例
此例将返回从索引 -4(包括)到索引 -1(排除)的项目:
thistuple = ("apple", "banana", "cherry", "orange", "kiwi", "melon", "mango")
print(thistuple[-4:-1])
更改元组值
创建元组后,您将无法更改其值。元组是不可变的,或者也称为恒定的。
但是有一种解决方法。您可以将元组转换为列表,更改列表,然后将列表转换回元组。
实例
把元组转换为列表即可进行更改:
x = ("apple", "banana", "cherry")
y = list(x)
y[1] = "kiwi"
x = tuple(y)
print(x)
遍历元组
实例
遍历项目并打印值:
thistuple = ("apple", "banana", "cherry")
for x in thistuple:
print(x)
检查项目是否存在
实例
检查元组中是否存在 “apple”:
thistuple = ("apple", "banana", "cherry")
if "apple" in thistuple:
print("Yes, 'apple' is in the fruits tuple")
元组长度
实例
打印元组中的项目数量:
thistuple = ("apple", "banana", "cherry")
print(len(thistuple))
添加项目
实例
您无法向元组添加项目:
thistuple = ("apple", "banana", "cherry")
thistuple[3] = "orange" # 这将引发错误
print(thistuple)
创建有一个项目的元组
如需创建仅包含一个项目的元组,您必须在该项目后添加一个逗号,否则 Python 无法将变量识别为元组。
实例
单项元组,别忘了逗号:
thistuple = ("apple",)
print(type(thistuple))
#NOT a tuple
thistuple = ("apple")
print(type(thistuple))
删除项目
注释: 您无法删除元组中的项目。
元组是不可更改的,因此您无法从中删除项目,但您可以完全删除元组:
实例
del 关键字可以完全删除元组:
thistuple = ("apple", "banana", "cherry")
del thistuple
print(thistuple) #this will raise an error because the tuple no longer exists
合并两个元组
实例
合并这个元组:
tuple1 = ("a", "b" , "c")
tuple2 = (1, 2, 3)
tuple3 = tuple1 + tuple2
print(tuple3)
tuple() 构造函数
实例
使用 tuple() 方法来创建元组:
thistuple = tuple(("apple", "banana", "cherry")) # 注意双圆括号
print(thistuple)
元组方法
Python 提供两个可以在元组上使用的内建方法。
方法 | 描述 |
---|---|
count() | 返回元组中指定值出现的次数。 |
index() | 在元组中搜索指定的值并返回它被找到的位置。 |