Python 元组(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。
  • 负索引范围

    如果要从元组的末尾开始搜索,请指定负索引:
    本示例将项目从索引-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")
    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))
    
    尝试一下
  • 删除项目

    注意:您不能删除元组中的项目。
    元组不可更改,因此无法从中删除项目,但可以完全删除元组:
    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 有两个可在元组上使用的内置方法。
    方法 描述
    count() 返回指定值在元组中出现的次数
    index() 在元组中搜索指定的值,并返回找到它的位置