Python Numpy np.coords()方法
在np.coords()方法的帮助下,我们可以通过np.coords()方法得到迭代中下一个值的坐标。
语法: np.coords()
返回:返回下一个迭代器的坐标。
例子#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)