Saturday, February 7, 2026
HomeLanguagesPython | sympy.Matrix.col() method

Python | sympy.Matrix.col() method

With the help of sympy.Matrix().col() method, we can extract the columns of the matrix.

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

Example #1 :
In the given example we can see that the sympy.Matrix.col() method is used to extract the columns of a matrix.




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


Output :

Matrix([[2], [1]])

Example #2 :




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


Output :

Matrix([[1], [2], [23]])

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

Most Popular

Dominic
32493 POSTS0 COMMENTS
Milvus
126 POSTS0 COMMENTS
Nango Kala
6864 POSTS0 COMMENTS
Nicole Veronica
11990 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12083 POSTS0 COMMENTS
Shaida Kate Naidoo
7000 POSTS0 COMMENTS
Ted Musemwa
7241 POSTS0 COMMENTS
Thapelo Manthata
6951 POSTS0 COMMENTS
Umr Jansen
6936 POSTS0 COMMENTS