python list *运算初始化的的问题
程序员文章站
2022-06-17 11:29:46
...
环境:python 2.7
发现list初始化问题,
如果按以下形式初始化:
test_list = [[]]*4
test_list[0].append([1])
test_list[1].append([2])
test_list[2].append([3])
test_list[3].append([4])
得到结果:
[[[1], [2], [3], [4]], [[1], [2], [3], [4]], [[1], [2], [3], [4]], [[1], [2], [3], [4]]]
猜测,以这种形式初始化,指向的是同一个空间。