Python/gloss python access tuple items

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

<languages />

Python访问元组项

访问元组项目

您可以通过在方括号内引用索引号来访问元组项:

打印元组中的第二项:

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