标签: python
我想将2 x 3矩阵的第一个元素设置为1,下面的代码有什么问题?
mat = [[0]*3]*2; mat[0][0] = 1; print(mat) python test.py
给予
[[1, 0, 0], [1, 0, 0]]
谢谢!