Python/python tuples

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python元组

元组

元组是有序集合, 不可改变的 。在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。


负指数范围

如果要从元组的末尾开始搜索,请指定负索引:

本示例将项目从索引-4(包括)返回到索引-1(排除)

thistuple = ("apple", "banana", "cherry", "orange", "kiwi", "melon", "mango")

print(thistuple[-4:-1])

更改元组值

创建元组后,您将无法更改其值。元组是 不可改变的 , or 一成不变的 也被称为。

但是有一种解决方法。您可以将元组转换为列表,更改列表,然后将列表转换回元组。

将元组转换为列表即可进行更改:

  x = ("apple", "banana", "cherry")
y = list(x)
y[1] = "kiwi"
x = 
  tuple(y)

print(x)

通过元组循环

您可以使用 for 环。

遍历项目并打印值:

thistuple = ("apple", "banana", "cherry")

  for x in thistuple:
  print(x)

您将了解更多有关 for 在我们的循环 Python For循环

章节。

检查项目是否存在

要确定元组中是否存在指定的项目,请使用 in 关键词:

检查元组中是否存在“苹果”:

thistuple = ("apple", "banana", "cherry")

  if "apple" in thistuple:
  print("Yes, 'apple' is in the fruits tuple")

元组长度

要确定元组有多少项,请使用 len() 方法:

打印元组中的项目数:

thistuple = ("apple", "banana", "cherry")

  print(len(thistuple))

新增项目

创建元组后,您将无法向其添加项目。元组是 不可改变的 .

您不能将项目添加到元组:

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))

删除项目

注意: 您不能删除元组中的项目。


元组是 不可改变的 ,因此您无法从中删除项目,但可以完全删除元组:

The 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")) # note the double round-brackets

print(thistuple)

元组方法

Python有两个可用于元组的内置方法。

方法 描述
计数() 返回指定值在元组中出现的次数
指数() 在元组中搜索指定的值,并返回找到它的位置