import numpy as nparr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])print(arr)执行结果:[[[1 2 3] [4 5 6]] [[1 2 3] [4 5 6]]]