python元组的基本用法

Posted 永远不要矫情

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python元组的基本用法相关的知识,希望对你有一定的参考价值。

Python的元组与列表类似,不同之处在于元组的元素不能修改。元组使用小括号,列表使用方括号。元组创建很简单,只需要在括号中添加元素,并使用逗号隔开即可。例如:

testtuple= ("apple", "banana", "cherry")
print(testtuple)

1.访问元组元素

与列表相同,索引从0开始。也可以使用负索引,-1 表示最后一个元素,-2 表示倒数第二个元素,依此类推。

testtuple= ("apple", "banana", "cherry")
print(testtuple[1])
print(testtuple[-2])

输出为:

banana
banana

2.更改元组值

创建元组后,无法更改其值。元组是不可变的,或者也称为恒定的。因此无append,insert方法,修改值也会报错。例如:

testtuple= ("apple", "banana", "cherry")
testtuple[2]="grape"
print(testtuple)

报错如下:

    testtuple[2]="grape"
TypeError: 'tuple' object does not support item assignment

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

testtuple1= ("apple", "banana", "cherry")
list1 = list(testtuple1)
list1[1] = "grape"
testtuple1 = tuple(list1)
print(testtuple1)

输出:

('apple', 'grape', 'cherry')

3.删除元组元素

元组是不可更改的,因此无法删除元素,但可以删除整个元组:

testtuple1= ("apple", "banana", "cherry")
del testtuple1[0]

输出:

    del testtuple1[0]
TypeError: 'tuple' object doesn't support item deletion

删除整个元组:

testtuple1= ("apple", "banana", "cherry")
del testtuple1
print(testtuple1)

输出:

    print(testtuple1)
NameError: name 'testtuple1' is not defined

以上是关于python元组的基本用法的主要内容,如果未能解决你的问题,请参考以下文章

Python第二天-元组的基本使用方法

python元组的用法

python列表与元组的用法

Python:用于元组的 Pandas DataFrame

Python基本数据类型(元组)

洗礼灵魂,修炼python--元组,集合,不可变集合