Friday, May 15, 2026
HomeLanguagesPython | Numpy matrix.item()

Python | Numpy matrix.item()

With the help of Numpy matrix.item() method, we can get the items from a given matrix by just providing index number and for multidimensional matrix we get the item by giving tuple of index value.

Syntax : matrix.item(index)

Return : Return item from given matrix

Example #1 :
In this example we can see that we are able to get the item with the help of method matrix.item() by providing index number.




# import the important module in python
import numpy as np
          
# make matrix with numpy
gfg = np.matrix('[6, 1; 2, 3]')
          
# applying matrix.item() method
neveropen = gfg.item((1, 0))
    
print(neveropen)


Output:

2

Example #2 :




# import the important module in python
import numpy as np
          
# make a matrix with numpy
gfg = np.matrix('[1, 2, 3; 4, 5, 6; 7, 8, 9]')
          
# applying matrix.item() method
neveropen = gfg.item((2, 0))
    
print(neveropen)


Output:

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

3 COMMENTS

Most Popular

Dominic
32514 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6892 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12107 POSTS0 COMMENTS
Shaida Kate Naidoo
7016 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6975 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS