import numpy as npArray1=Array2=np.ones((2,3),dtype=int)Array1[1,2]=2Array3=Array1+Array2print(Array3.sum())其中,Array1[1,2]=2是什么意思
这是二维数组,1,2表示第2行第三列