python 遍历元组
时间: 2023-07-02 14:11:25 浏览: 112
元组的创建、访问、遍历1
可以使用 for 循环遍历元组中的每一个元素,例如:
```python
my_tuple = (1, 2, 3, 4, 5)
for item in my_tuple:
print(item)
```
输出:
```
1
2
3
4
5
```
另外,也可以使用 while 循环和索引来遍历元组,例如:
```python
my_tuple = (1, 2, 3, 4, 5)
index = 0
while index < len(my_tuple):
print(my_tuple[index])
index += 1
```
输出:
```
1
2
3
4
5
```
阅读全文