np.transpose(). 二维矩阵. 效果同T. import numpy as np; arr=np.arange(6).reshape(2,3); print(arr); print("置换后:"); arr2=np.transpose(arr) ...
確定! 回上一頁