import numpy as np ar=np.ones((6,)) print(ar) print("Shape: ", ar.shape) print("Dimension ", ar.ndim) ar=ar.reshape((2,3)) print("##After using ...
確定! 回上一頁