python二维数组创建赋值问题:更改单个值却更改了所有项的值

python 复制代码
test_list = []
dic1 = {}
test_list = [dic1 for _ in range(3)]
ll = [1, 2, 3]

for i in range(3):
    test_list[i]['value'] = ll[i]

print(test_list)

运行结果:每次赋值都更改了所有项

原因:python的二位数据创建方式就是这样,官方文档中有描述What has happened is that [[]] is a one-element list containing an empty list,

so all three elements of [[]] * 3 are references to this single empty list.

Modifying any of the elements of lists modifies this single list. You can create a list of different lists this way:

python 复制代码
>>> lists = [[] for i in range(3)]
>>> lists[0].append(3)
>>> lists[1].append(5)
>>> lists[2].append(7)
>>> lists
[[3], [5], [7]]

那么,将上述代码修改为:

python 复制代码
test_list = []
test_list = [{} for _ in range(3)]
ll = [1, 2, 3]

for i in range(3):
    test_list[i]['value'] = ll[i]

print(test_list)

结果正确:

相关推荐
Dontla1 小时前
用pip install -e .开发Python包时,Python项目目录结构(项目结构)(可编辑安装editable install)
python·pip
Thomas.Sir1 小时前
第三章:Python3 之 字符串
开发语言·python·字符串·string
威联通网络存储2 小时前
告别掉帧与素材损毁:威联通 QuTS hero 如何重塑影视后期协同工作流
前端·网络·人工智能·python
Dxy12393102162 小时前
Python 根据列表中某字段排序:从基础到进阶
开发语言·windows·python
splage2 小时前
Java进阶——IO 流
java·开发语言·python
cliffordl2 小时前
设计模式(python)
python·设计模式
always_TT3 小时前
从Python_Java转学C语言需要注意什么?
java·c语言·python
2301_793804693 小时前
定时任务专家:Python Schedule库使用指南
jvm·数据库·python
穿越世纪的风尘4 小时前
【问题解决】No module named ‘_sqlite3‘
python·centos