共计 242 个字符,预计需要花费 1 分钟才能阅读完成。
在 Python 中,遍历元组可以使用 for 循环来实现。例如:
my_tuple = (1, 2, 3, 4, 5)
for item in my_tuple:
print(item)
这样就可以遍历元组中的每个元素并打印出来。如果需要获取元素的索引,可以使用 enumerate 函数来实现:
my_tuple = (1, 2, 3, 4, 5)
for index, item in enumerate(my_tuple):
print(index, item)
这样就可以同时获取元素的索引和值进行遍历操作。
丸趣 TV 网 – 提供最优质的资源集合!
正文完