Python 遍历list
时间: 2023-08-10 08:03:11 浏览: 85
python遍历文件夹下所有excel文件
5星 · 资源好评率100%
可以使用 for 循环遍历 Python 中的 list,示例代码如下:
```python
my_list = [1, 2, 3, 4, 5]
for item in my_list:
print(item)
```
输出结果:
```
1
2
3
4
5
```
如果需要访问每个元素的索引位置,可以使用 enumerate() 函数,示例代码如下:
```python
my_list = [1, 2, 3, 4, 5]
for index, item in enumerate(my_list):
print("Index:", index, "Value:", item)
```
输出结果:
```
Index: 0 Value: 1
Index: 1 Value: 2
Index: 2 Value: 3
Index: 3 Value: 4
Index: 4 Value: 5
```
阅读全文