gpt4 book ai didi

python - 如何解压列表字典(字典!)并作为分组元组返回?

转载 作者:太空狗 更新时间:2023-10-30 00:59:32 26 4
gpt4 key购买 nike

我有一个由混合字典和列表组成的数据结构。我正在尝试解压缩它,以便获得键的元组和每个键的所有子值。

我正在使用列表理解,但就是无法正常工作。我哪里错了?

我看到许多关于解包列表列表的其他答案(例如 12 ),但找不到单个键针对多个子值解包的示例。

  • 期望的输出 --> [('A',1,2),('B',3,4)]
  • 实际输出 --> [('A',1), ('A',2), ('B',3), ('B',4)]

代码:

dict_of_lists = {'A':[{'x':1},{'x':2}], 'B':[{'x':3},{'x':4}] }
print [(key,subdict[subkey],) for key in dict_of_lists.keys() for subdict in dict_of_lists[key] for subkey in subdict.keys()]

最佳答案

当列表解析变成

  • 不清楚/难以阅读
  • 最重要的是,不要工作

放弃它们,每次都使用手册 for 循环:

python 2.x

def unpack(d):
for k, v in d.iteritems():
tmp = []
for subdict in v:
for _, val in subdict.iteritems():
tmp.append(val)
yield (k, tmp[0], tmp[1])


print list(unpack({'A':[{'x':1},{'x':2}], 'B':[{'x':3},{'x':4}] }))

python 3.x

def unpack(d):
for k, v in d.items():
tmp = []
for subdict in v:
for _, val in subdict.items():
tmp.append(val)
yield (k, *tmp) # stared expression used to unpack iterables were
# not created yet in Python 2.x

print(list(unpack({'A':[{'x':1},{'x':2}], 'B':[{'x':3},{'x':4}] })))

输出:

[('A', 1, 2), ('B', 3, 4)]

关于python - 如何解压列表字典(字典!)并作为分组元组返回?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40581247/

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