原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.ndenumerate.html
校对:(虚位以待)
numpy.
ndenumerate
(arr)[source]多维索引迭代器。
返回迭代器产生数组坐标和值的对。
参数: | arr:ndarray
|
---|
例子
>>> a = np.array([[1, 2], [3, 4]])
>>> for index, x in np.ndenumerate(a):
... print(index, x)
(0, 0) 1
(0, 1) 2
(1, 0) 3
(1, 1) 4
方法
next () |
标准迭代器方法,返回索引元组和数组值。 |