📜  Python| Numpy np.coords() 方法

📅  最后修改于: 2022-05-13 01:54:44.432000             🧑  作者: Mango

Python| Numpy 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)

输出 :

示例 #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)

输出 :