Friday, May 8, 2026
HomeLanguagesPython | sympy.Matrix.row() method

Python | sympy.Matrix.row() method

With the help of sympy.Matrix.row() method, we can extract the rows of the matrix.

Syntax : sympy.Matrix.row()
Return : Return the row of a matrix.

Example #1 :

In the given example we can see that the sympy.Matrix().row() method is used to extract the rows of a matrix.




# Import all the methods from sympy
from sympy import *
  
# use the row() method for matrix
gfg_val = Matrix([[1, 2], [2, 1]]).row(1)
  
print(gfg_val)


Output :

[2, 1]

Example #2 :




from sympy import *
  
# use the row() method for matrix
gfg_val = Matrix([[1, 2], [2, 3], [23, 45]]).row(2)
  
print(gfg_val)


Output :

[23, 45]

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

1 COMMENT

Most Popular

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