创建一个二维数据的NumPy数组:data = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])访问数组中第二行第三列的元素的表示方式是value=data[2, 3]。( )