python 数组遍历
时间: 2023-09-02 07:12:09 浏览: 126
可以使用 for 循环或者 while 循环对 Python 数组进行遍历。下面是使用 for 循环遍历 Python 数组的示例代码:
```
my_list = [1, 2, 3, 4, 5]
for item in my_list:
print(item)
```
输出结果为:
```
1
2
3
4
5
```
使用 while 循环遍历 Python 数组的示例代码如下:
```
my_list = [1, 2, 3, 4, 5]
index = 0
while index < len(my_list):
print(my_list[index])
index += 1
```
输出结果与上面相同。
相关问题
python 数组遍历便捷写法
以下是Python中数组遍历的便捷写法:
1. 遍历元组元素
```python
tuple1 = ('h', 'e', 'l', 'l', 'o')
for item in tuple1:
print(item)
```
2. 遍历列表元素
```python
list1 = ['Python', 'Java', 'C++', 'JavaScript']
for item in list1:
print(item)
```
3. 遍历集合元素
```python
set1 = {'a', 'b', 'c'}
for item in set1:
print(item)
```
4. 遍历整数列表
```python
intlist = [1, 2, 3, 4, 5]
for item in intlist:
print(item)
```
python多维数组遍历
要遍历多维数组,可以使用嵌套的循环。下面是一个示例代码,演示了如何遍历一个二维数组:
```python
arr = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
for row in arr:
for element in row:
print(element)
```
在上面的代码中,外层循环遍历每一行,内层循环遍历每一行中的元素。通过这种方式,可以依次打印出数组中的每个元素。
阅读全文