Answers for "find number of rows and columns of matrix in python"

0

how to get the number of rows and columns in a numpy array

c = np.array([[1, 2, 3],[6, 5, 4]])

'''
c returns the following matrix
[1, 2, 3]
[4, 5, 6]
'''
print(c.shape)

#returns: (2,3) (number of rows, number of columns)
Posted by: Guest on October-06-2021

Code answers related to "find number of rows and columns of matrix in python"

Python Answers by Framework

Browse Popular Code Answers by Language