list = [1,2,3,4,5,6] array = np.array(list) array = np.reshape(array,[-1,3]) 得到2,3的shape的np array 重点就是,不知道的那一维,设置为-1.