gpt4 book ai didi

python - 添加到字典列表 - python

转载 作者:太空宇宙 更新时间:2023-11-04 03:50:08 24 4
gpt4 key购买 nike

我正在尝试将新的字典添加到现有的字典列表中,该列表采用新的键和值列表。

我的字典列表称为“选项”,它看起来像这样:

[{'powerpoint_color': 'blue', 'client_name': 'Sport Parents (Regrouped)'}, 
{'crossbreak': 'profile_julesage', 'chart_layout': '8', 'chart_type': 'pie', 'sort_order': 'desending'}]

我想向选项中添加一个新的字典,但我不确定该怎么做?

我想用一个名为“fixed_properties”的键来调用我的新字典,它将采用一个名为“fixed_elements”的字符串列表。

我试过这样的:

fixed_elements = []

options['fixed_properties'] = fixed_elements

但是我得到了这个错误:

'dict' object has no attribute 'append' 

这就是我希望“选项”字典的样子:

[{'powerpoint_color': 'blue', 'client_name': 'Sport Parents (Regrouped)'}, 
{'crossbreak': 'profile_julesage', 'chart_layout': '8', 'chart_type': 'pie', 'sort_order': 'desending'}
{'fixed_properties': ['q1','q4','q6']}]

有什么建议吗?

谢谢。

最佳答案

如果 options 是您的选项列表:

options.append({'fixed_properties': fixed_elements})

关于python - 添加到字典列表 - python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21679127/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com