python创建二维 list 的方法是在 list 里存放 list : l = [[1,2,3,4],[5,6,7,8],[9,10,11,12],[13,14,15,16]] numpy可以直接创建一个二维的数组: import numpy as np l = np.array([ [1,2,3,4], [5,6,7,8], [9,10,11,12], [13,14,15,16] ]) numpy二维数组获取某个值: [a, b] : a 表示行索引, b 表示列索引,就是获取第 a 行
1.二维数组:二维数组就是存储一维数组(内存地址/引用)的数组 2.二维数组的初始化 1) int intA[][]={{1,2},{2,3},{3,4,5}}; 2) int [][] intB=new int[3][5]; 3) int []intC []=new int[3][]; intC[0]=new int[2];intC[1]=new int[3];intC[2]=new int[5]; public class TestArray2 { public static void ma