Python - 循环元组
循环遍历元组
您可以使用 for
循环遍历元组中的项。
在我们的 Python For 循环 章中了解更多关于 for
循环的信息。
循环遍历索引号
您还可以通过引用其索引号来循环遍历元组中的项。
使用 range()
和 len()
函数来创建合适的可迭代对象。
例子
通过引用其索引号打印所有项
thistuple = ("apple", "banana", "cherry")
for i in range(len(thistuple))
print(thistuple[i])
自己尝试 »
使用 While 循环
您可以使用 while
循环遍历元组中的项。
使用 len()
函数来确定元组的长度,然后从 0 开始,通过引用其索引号遍历元组中的项。
请记住在每次迭代后将索引增加 1。
例子
打印所有项,使用 while
循环遍历所有索引号
thistuple = ("apple", "banana", "cherry")
i = 0
while i < len(thistuple)
print(thistuple[i])
print(thistuple[i])
自己尝试 »
i = i + 1