我有一本包含列表的字典。我想从中创建多个词典。
原始文件为{'user': ['BEBR', 'FRPA', 'GEMU'], 'udp': ['COLT_BE_8845-udp', 'COLT_FR_8845-udp', 'COLT_DE_8845-udp']}
我想要这样的东西
[{'user': 'BEBR', 'udp': 'COLT_BE_8845-udp'},
{'user': 'FRPA', 'udp': 'COLT_FR_8845-udp'},
{'user': 'GEMU', 'udp': 'COLT_DE_8845-udp'},
....]
我有一个沙箱here
答案 0 :(得分:3)
你可以做
res = [{'user':user,'udp':udp} for user, udp in zip(*d.values())]
其中d
是您的原始词典
答案 1 :(得分:1)
尝试以下代码:
result = []
for user, udp in zip(original['user'], original['udp']):
result.append({'user': user, 'udp':udp})
这将返回字典列表,如您的示例。
答案 2 :(得分:1)
您可以将dict
与zip
一起使用:
d = {'user': ['BEBR', 'FRPA', 'GEMU'], 'udp': ['COLT_BE_8845-udp', 'COLT_FR_8845-udp', 'COLT_DE_8845-udp']}
result = [dict(j) for j in zip(*[[(a, i) for i in b] for a, b in d.items()])]
输出:
[{'user': 'BEBR', 'udp': 'COLT_BE_8845-udp'}, {'user': 'FRPA', 'udp': 'COLT_FR_8845-udp'}, {'user': 'GEMU', 'udp': 'COLT_DE_8845-udp'}]
答案 3 :(得分:0)
您可以使用zip
。
out=[]
>>> for key,value in zip(dic['user'],dic['udp']):
out.append({'user':key,'udp':value})
答案 4 :(得分:0)
# finds the list in the csvfile dictionary with the key "user"
# the program uses this value to define the length of all list key values in the dictionary
listlength = len(csvfile["user"])
# extract list of keys e.g. user, udp
keys = [key for key in csvfile]
main_list = []
for x in range(listlength):
sub_dictionary = {}
for key in keys:
sub_dictionary[key] = csvfile[key][x]
main_list.append(sub_dictionary)
print(main_list)
或等价物
csvdict = [{key: csvfile[key][value] for key in [key for key in csvfile]} for value in range(len(csvfile["user"]))]