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)