创建一个包含两个值为 1、2、3 和 4,5,6 的数组的二维数组:import numpy as nparr = np.array([[1, 2, 3], [4, 5, 6]])print(arr)执行结果:[[1 2 3] [4 5 6]]