【Python】Python - 迴圈Tuple。Python Loop Tuples.
【Python】Python - 迴圈Tuple。Python Loop Tuples.
在Tuple使用迴圈
可以使用for
迴圈去取得tuple內的items。
範例
迭代tuple內的items並列印裡面的值:
thistuple = ("apple", "banana", "cherry")
for x in thistuple:
print(x)
上面輸出:
apple
banana
cherry
使用索引值來使用迴圈
你也可在迴圈內使用索引值。
使用range()
and len()
方法可以建立適合的迭代。
範例
參考索引值去列印items:
thistuple = ("apple", "banana", "cherry")
for i in range(len(thistuple)):
print(thistuple[i])
上面輸出:
apple
banana
cherry
使用while 迴圈
你可以使用while
迴圈來取得tuple的items。
使用len()
方法去得到tuple的大小,而索引值從0開始。記住每一次的迭代增加整數1。
範例
使用while
迴圈去得到所有的tuple items,並列印所有的items:
thistuple = ("apple", "banana", "cherry")
i = 0
while i < len(thistuple):
print(thistuple[i])
i = i + 1
上面輸出:
apple
banana
cherry
[%wwc%]
留言
張貼留言