Skip to content

访问元组项

元组使用零基索引,其中 0 是第一个元素的索引,len(tuple) - 1 是最后一个元素的索引。

python
>>> t = ("宝马", "Z4", 2019,
...       4, "红色", True)
>>> t[0]
'宝马'
>>> t[2]
2019

元组长度

内置的 len() 函数可用于返回元组的长度。

python
>>> t = ("宝马", "Z4", 2019,
...       4, "红色", True)
>>> len(t)
6

负索引

就像 list 一样,tuple 支持负索引,即你可以从末尾访问元组的值。索引 -1 表示元组中的最后一项,-2 是倒数第二项,依此类推。

python
>>> t = ("宝马", "Z4", 2019,
...       4, "红色", True)
>>> t[-1]
True
>>> t[-3]
4