Friday, September 5, 2025
HomeLanguagesPython | Numpy np.flatiter() method

Python | Numpy np.flatiter() method

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(['neveropen', 'for', 'neveropen'])
gfg = a.flat
  
for items in gfg:
    print(items)


Output :

neveropen
for
neveropen

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32265 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6634 POSTS0 COMMENTS
Nicole Veronica
11801 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11863 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6701 POSTS0 COMMENTS
Umr Jansen
6718 POSTS0 COMMENTS