Python/gloss python loop tuple items
来自菜鸟教程
<languages />
Python通过元组循环
通过元组循环
您可以使用
for
环。
例
遍历项目并打印值:
thistuple = ("apple", "banana", "cherry") for x in thistuple: print(x)
您可以了解更多有关
for
在我们的循环
Python For循环
章节。
<languages />
您可以使用
for
环。
遍历项目并打印值:
thistuple = ("apple", "banana", "cherry") for x in thistuple: print(x)
您可以了解更多有关
for
在我们的循环
Python For循环
章节。