python Copy import numpy as np a = np.arange(12).reshape(4,3) s = np.sum(a, axis=0) print(s). 輸出: textCopy [18 22 26].
確定! 回上一頁