numpy reshape order Posted on 2018-04-Tue Edited on 2018-04-Sun Views: Views: 123456import numpy as npa = np.arange(6).reshape((3,2))print("a:", a)print(np.reshape(a, (2,3)))print(np.reshape(a, (2,3), order='F'))1234567a: [[0 1] [2 3] [4 5]][[0 1 2] [3 4 5]][[0 4 3] [2 1 5]]