day01
数组的维度-从几个方向上看
数组创建 array arange
ndim-查看数组轴的个数
shape-查看数组的形状
dtype-描述数组中元素的数据类型
size-查看数组元素的个数
reshape-转变数组的维度
flatten-展开数组中的所有元素
转置数轴-加T/ranspose/swapacxes(1,0)
ones-创建全部是1的数组 np.ones(shape,dtype=None,order='C')
ones_like-按指定数组形状创建都是1的数组 np.ones_like(a,dtype=float, order="c", subok=True)
full-创建指定值的数组 np.full(shape,fill_value,dtype=None,order='C')
full_like-按指定数组形状创建指定值的数组 np.full_like(a,fill_value=123,dtype=None)





