Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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)
 
PREVIOUS NEXT
Tagged: #number #rows #columns #numpy #array
ADD COMMENT
Topic
Name
5+7 =