您可以使用循环遍历元组项for
环形。
学习更多关于for
循环在我们的Python For 循环章节。
您还可以通过引用元组项的索引号来循环遍历元组项。
使用range()
和len()
函数来创建合适的可迭代对象。
通过引用索引号打印所有项目:
thistuple = ("apple", "banana", "cherry")
for i in range(len(thistuple)):
print(thistuple[i])
亲自试一试 »
您可以使用循环遍历元组项while
环形。
使用len()
函数来确定元组的长度,然后从 0 开始并通过引用元组项的索引来循环遍历元组项。
请记住在每次迭代后将索引增加 1。
打印所有项目,使用while
循环遍历所有索引号:
thistuple = ("apple", "banana", "cherry")
i = 0
while i < len(thistuple):
print(thistuple[i])
i = i + 1
亲自试一试 »
学习更多关于while
循环在我们的Python While 循环章节。
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!