2020年12月8日
摘要: 首先看一下这个例子 import numpy as np a=np.arange(8).reshape(2,2,2) print(a.sum(axis=0)) print(a.sum(axis=1)) print(a.sum(axis=2)) ''' 输出如下: [[ 4 6] [ 8 10]] [ 阅读全文
posted @ 2020-12-08 09:51 小小喽啰 阅读(165) 评论(0) 推荐(0) 编辑