最好的方法是:
初始化4*3的二维数组
a = [[0 for col in xrange(3)] for row in xrange(4)]
而不可以用:
a = [[0]*3]*4
[0]*3是生成一个一维数组,再*4只是会复制出三个引用,当修改a[0][0]时,其他的三个引用的值也会发生改变,故这种方法是错误的。
本文共 216 字,大约阅读时间需要 1 分钟。
最好的方法是:
初始化4*3的二维数组
a = [[0 for col in xrange(3)] for row in xrange(4)]
而不可以用:
a = [[0]*3]*4
[0]*3是生成一个一维数组,再*4只是会复制出三个引用,当修改a[0][0]时,其他的三个引用的值也会发生改变,故这种方法是错误的。
转载于:https://www.cnblogs.com/Stomach-ache/p/3869201.html