NumPy 迭代数组

– 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 精萃
– 声 明:转载请注明出处
– Last Updated on 2018-10-21
– Written by ShangBo on 2018-10-21
– End

你可能感兴趣的:(NumPy)