– Start
通常我们不需要迭代数组,因为我们可以直接对数组进行操作,但如果你一定要迭代数组,那也是可以的。
import numpy as np# 定义数组
a = np.arange(12).reshape(3, 4)
print(f'a={a}')# 迭代数组
for row in a:
print(row)# 迭代数组
for row in a:
for cell in row:
print(cell)# 迭代数组
for cell in a.flat:
print(cell)
【NumPy 迭代数组】– 更多参见:NumPy 精萃
– 声 明:转载请注明出处
– Last Updated on 2018-10-21
– Written by ShangBo on 2018-10-21
– End
推荐阅读
- numpy 官网文章翻译
- python|numpy常用知识整理
- python|python+numpy按行求一个二维数组的最大值
- NumPy常用函数(5)-- 寻找最大值和最小值,以及计算数组的取值范围
- python|Matplotlib 中文用户指南 3.7 变换教程
- 学习|TypeError: Mismatch between array dtype (‘object’) and format specifier (‘%.18e’)
- numpy迭代数组
- Python全栈工程师学习笔记|Python数据分析 - 机器学习笔记(第一章数据分析 - 1.2.5多项式和线性方程组)
- Python全栈工程师学习笔记|Python数据分析 - 机器学习笔记(第一章数据分析 - 1.2.3.运算和通过函数)
- numpy的array数组操作