python 遍历tuple
时间: 2023-11-15 13:49:22 浏览: 102
python 实现遍历列表
遍历Python中的tuple有多种方法。你可以使用for循环来遍历tuple中的每个元素,也可以使用enumerate()函数获得索引和值,或者使用range()函数和len()函数结合来遍历tuple。另外,你还可以使用迭代器iter()来遍历tuple的元素。
以下是几种遍历tuple的方法:
1. 使用for循环遍历tuple的每个元素:
```python
for value in tuple:
print(value)
```
结果:
```
111
222
333
```
2. 使用enumerate()函数获得索引和值:
```python
for index, value in enumerate(tuple):
print('index:', index, 'value:', value)
```
结果:
```
index: 0 value: 111
index: 1 value: 222
index: 2 value: 333
```
3. 使用range()函数和len()函数结合遍历tuple:
```python
for index in range(len(tuple)):
print('index:', index, 'value:', tuple[index])
```
结果:
```
index: 0 value: 111
index: 1 value: 222
index: 2 value: 333
```
4. 使用迭代器iter()遍历tuple的元素:
```python
for value in iter(tuple):
print(value)
```
结果:
```
111
222
333
```
阅读全文