多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
### 第1关 :Numpy广播 ``` arr=np.arange(12).reshape(4,3) ``` ### 第2关 :Numpy高级索引 ``` a=arr[line] row=a.shape[0] col=a.shape[1] b=a[[0,0,row-1,row-1],[0,col-1,0,col-1]] c=b[b>10] ``` ### 第3关 :Numpy迭代数组 ``` i = 0 result = [] for x in np.nditer(arr, flags=['external_loop'], order='F'): x = x[:: -1] if i == 0: result = x else: result = np.vstack((result, x)) i += 1 ```