Python遍历数组集合
时间: 2024-03-21 13:35:32 浏览: 118
python遍历数组的方法小结
在Python中,可以使用循环来遍历数组和集合。常用的循环方式有for循环和while循环。
1. 使用for循环遍历数组:
```python
array = [1, 2, 3, 4, 5]
for element in array:
print(element)
```
输出结果:
```
1
2
3
4
5
```
2. 使用for循环遍历集合:
```python
set = {1, 2, 3, 4, 5}
for element in set:
print(element)
```
输出结果:
```
1
2
3
4
5
```
3. 使用while循环遍历数组或集合:
```python
array = [1, 2, 3, 4, 5]
index = 0
while index < len(array):
print(array[index])
index += 1
```
输出结果:
```
1
2
3
4
5
```
阅读全文