Python 元组(tuple)
-
-
访问元组项目
您可以通过在方括号内引用索引号来访问元组项: -
负索引
负索引是指从头开始,-1指的是最后一项,-2指的是倒数第二项, 依此类推。 -
索引范围
您可以通过指定范围的起点和终点来指定索引范围。指定范围时,返回值将是带有指定项目的新元组。返回第三,第四和第五项:
尝试一下thistuple = ("apple", "banana", "cherry", "orange", "kiwi", "melon", "mango") print(thistuple[2:5])
注意:搜索将从索引2(包括)开始,到索引5(不包括)结束。
请记住,第一项的索引为0。
-
负索引范围
如果要从元组的末尾开始搜索,请指定负索引:本示例将项目从索引-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)
您将在“Python For循环”一章中了解有关for循环的更多信息。
-
检查项目是否存在
要确定列表中是否存在指定的项目,请使用in关键字:检查元组中是否存在“apple”:
尝试一下thistuple = ("apple", "banana", "cherry") if "apple" in thistuple: print("Yes, 'apple' is in the fruits tuple")
-
元组长度
要确定元组中有多少项,请使用以下 len() 函数: -
新增项目
创建元组后,您将无法向其添加项目。元组是不变的。您不能将项目添加到元组:将报错
尝试一下thistuple = ("apple", "banana", "cherry") thistuple[3] = "orange" # This will raise an error 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
-
连接两个元组
要连接两个或多个元组,可以使用 + 运算符: -
tuple() 构造函数
也可以使用 tuple() 构造函数创建一个元组。
尝试一下thistuple = tuple(("apple", "banana", "cherry")) # note the double round-brackets print(thistuple)
-
元组方法
Python 有两个可在元组上使用的内置方法。方法 描述 count() 返回指定值在元组中出现的次数 index() 在元组中搜索指定的值,并返回找到它的位置