Open In App

Python | Numpy np.flatiter() method

Last Updated : 03 Nov, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

With the help of np.flatiter() method, we can get the flat iterator with the help of np.flatiter() method.

Syntax : np.flatiter()
Return : Return the flat iterator.

Example #1 :
In this example we can see that by using np.flatiter() method, we are able to get the flat iterator using this method.




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


Output :

6
5
4
3
2
1

Example #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)


Output :

geeks
for
geeks


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads