python坑爹数组 m=10,n=10 c = [[0]*n]*m c = [[0]*n for i in range(m)] 这两个竟然不一样,第一种情况id(c[i][n-1])==id(c[i+1][n-1])