2014年1月20日 - Python 二維陣列 可使用list=[list1,list2]的方式宣告取值的方式為list[index1][index2] ex. >>> list2d=[[1,2],[3,4]] >>> list2d [[1, 2], [3, 4]] >>> list2d[0][0]
cheerup-my.blogspot.com