gpt4 book ai didi

python - 从字典列表中删除重复项

转载 作者:太空狗 更新时间:2023-10-29 22:07:07 25 4
gpt4 key购买 nike

我有以下字典列表:

d = [
{ 'name': 'test', 'regions': [{'country': 'UK'}] },
{ 'name': 'test', 'regions': [{'country': 'US'}, {'country': 'DE'}] },
{ 'name': 'test 1', 'regions': [{'country': 'UK'}], 'clients': ['1', '2', '5'] },
{ 'name': 'test', 'regions': [{'country': 'UK'}] },
]

从列表中删除重复条目的最简单方法是什么?

我看到了有效的解决方案,但前提是项目没有嵌套的字典或列表

最佳答案

这个怎么样:

new_d = []
for x in d:
if x not in new_d:
new_d.append(x)

关于python - 从字典列表中删除重复项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8972076/

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