X = np.array([5, 6, 7, 8, 9]) #创建1D张量, 也就是向量 print("X的值", X) print("X的阶", X.ndim) #ndim属性显示向量的阶 print("X的形状", X.shape) #shape属性显示向量的形状