a = np.arange(3) b = np.arange(12).reshape((3, 4)) c = np.arange(24).reshape((2, 3, 4)) print(a.ndim) # 1 print(b.ndim) # 2 print(c.ndim) # 3