Python| Numpy np.flatiter() 方法
借助np.flatiter()
方法,我们可以借助np.flatiter()
() 方法获得平面迭代器。
Syntax : np.flatiter()
Return : Return the flat iterator.
示例 #1:
在这个例子中,我们可以看到通过使用np.flatiter()
方法,我们可以使用这个方法获得平面迭代器。
# import numpy
import numpy as np
# using np.flatiter() method
a = np.array([6, 5, 4, 3, 2, 1])
gfg = a.flat
for items in gfg:
print(items)
输出 :
6
5
4
3
2
1
示例 #2:
# import numpy
import numpy as np
# using np.flatiter() method
a = np.array(['geeks', 'for', 'geeks'])
gfg = a.flat
for items in gfg:
print(items)
输出 :
geeks
for
geeks