码迷,mamicode.com
首页 > 编程语言 > 详细

[Python Cookbook] Numpy: Iterating Over Arrays

时间:2019-01-02 10:46:01      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:iter   tin   html   color   arrays   out   long   get   int   

1. Using for-loop

Iterate along row axis:

1 import numpy as np
2 x=np.array([[1,2,3],[4,5,6]])
3 for i in x:
4     print(x)

Output:

[1 2 3]

[4 5 6]

 

2. Using ndenumerate object

for index, i in np.ndenumerate(x): 
print(index,i)

Output:

(0, 0) 1

(0, 1) 2

(0, 2) 3

(1, 0) 4

(1, 1) 5

(1, 2) 6

 

3. Using nditer object

See: https://docs.scipy.org/doc/numpy-1.15.0/reference/arrays.nditer.html

  

[Python Cookbook] Numpy: Iterating Over Arrays

标签:iter   tin   html   color   arrays   out   long   get   int   

原文地址:https://www.cnblogs.com/sherrydatascience/p/10206788.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!