Thursday, December 11, 2025
HomeLanguagesPython | Numpy fromrecords() method

Python | Numpy fromrecords() method

With the help of numpy.core.fromrecords() method, we can create the record array by using the list of individual records by using numpy.core.fromrecords() method.

Syntax : numpy.core.fromrecords([(tup1), (tup2)], metadata)

Return : Return the record of an array.

Example #1 :

In this example we can see that using numpy.core.fromrecords() method, we are able to get to get the record array by using individual records of list.




# import numpy
import numpy as np
  
# using numpy.core.fromrecords() method
gfg = np.core.records.fromrecords([(101, 'Jitender', 21),
                                    (102, 'Deepak', 20)], 
                            names = 'Rollno, Name, Age')
  
print(gfg[0])


Output :

(101, ‘Jitender’, 21)

Example #2 :




# import numpy
import numpy as np
  
# using numpy.core.fromrecords() method
gfg = np.core.records.fromrecords([(101, 'Jitender', 21),
                                    (102, 'Deepak', 20)],
                             names = 'Rollno, Name, Age')
  
print(gfg.Name)


Output :

[‘Jitender’ ‘Deepak’]

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

1 COMMENT

Most Popular

Dominic
32440 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6811 POSTS0 COMMENTS
Nicole Veronica
11950 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12023 POSTS0 COMMENTS
Shaida Kate Naidoo
6943 POSTS0 COMMENTS
Ted Musemwa
7194 POSTS0 COMMENTS
Thapelo Manthata
6889 POSTS0 COMMENTS
Umr Jansen
6880 POSTS0 COMMENTS