1 numpy数组1.1 append()import numpy as np a=np.array([[1,3],[5,7]])b=np.array([[2,4],[6,8]])c=np.append(a,b)d=np.append(a,b ...
確定! 回上一頁