2018年6月21日
摘要: import numpy as np 生成 3*4 的由 0 组成的二维数组 >>> np.zeros((3,4)) array([[0., 0., 0., 0.], [0., 0., 0., 0.], [0., 0., 0., 0.]]) 生成 2*3*4 的由 1 组成的三维数组 >>>np.o 阅读全文
posted @ 2018-06-21 17:50 庭明 阅读(140) 评论(0) 推荐(0) 编辑