import numpy as np matrix=np.ones((10,10)) print(matrix.sum(axis=0)) print(matrix.sum(axis=1))
確定! 回上一頁