Python| Numpy np.coords() 方法
借助np.coords()
方法,我们可以使用np.coords()
方法获取迭代中下一个值的坐标。
Syntax : np.coords()
Return : Return the coordinates of next iterator.
示例 #1:
在这个例子中,我们可以看到通过使用np.coords()
方法,我们可以使用该方法获取下一个迭代器的坐标。
# import numpy
import numpy as np
a = np.array([1, 2, 3])
# using np.coords() method
gfg = a.flat
next(gfg)
print(gfg.coords)
输出 :
(1, )
示例 #2:
# import numpy
import numpy as np
a = np.array([[1, 2, 3], [4, 5, 6]])
# using np.coords() method
gfg = a.flat
next(gfg)
next(gfg)
next(gfg)
next(gfg)
print(gfg.coords)
输出 :
(1, 1)