一个三维数组(64300300)怎么按第0维遍历64个(300*300)的数组呢?
import numpy as npa=np.array(a)for i in range(a.shape[0]):print(a[i,...])