python循环往数组里面存数据
时间: 2023-09-09 15:14:26 浏览: 98
python数组循环处理方法
你可以使用 for 循环来遍历数组,并使用 append() 方法将数据添加到数组中。例如:
```python
my_array = [] # 创建一个空数组
# 使用 for 循环遍历并向数组中添加数据
for i in range(10):
my_array.append(i)
print(my_array) # 输出数组内容
```
输出结果为:
```
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
```
你也可以使用 while 循环来实现相同的功能,例如:
```python
my_array = [] # 创建一个空数组
# 使用 while 循环遍历并向数组中添加数据
i = 0
while i < 10:
my_array.append(i)
i += 1
print(my_array) # 输出数组内容
```
输出结果为:
```
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
```
阅读全文