简体   繁体   English

2个列表中所有可能的字典组合排列

[英]All possible permutations of dictionaries combinations out of 2 lists

Suppose I have 2 lists in python : 假设我在python中有2个列表:

keys = [1, 2, 3, 4, 5, 6]

values = [7, 8, 9]

I want to get all permutations out of those 2 lists 我希望从这两个列表中获得所有排列

something like: 就像是:

d = [{1:7, 2:8, 3:9}, {1:8, 2:9, 3:7}, ....... ]

How could I achieve that? 我怎么能实现这一目标?

Do you mean something like this? 你的意思是这样的吗?

>>> import itertools
>>> keys = [1, 2, 3, 4, 5, 6]
>>> values = [7, 8, 9]
>>> d = [dict(zip(kperm, values)) for kperm in itertools.permutations(keys, len(values))]
>>> len(d)
120
>>> d[:10]
[{1: 7, 2: 8, 3: 9}, {1: 7, 2: 8, 4: 9}, {1: 7, 2: 8, 5: 9}, {1: 7, 2: 8, 6: 9}, {1: 7, 2: 9, 3: 8}, {1: 7, 3: 8, 4: 9}, {1: 7, 3: 8, 5: 9}, {1: 7, 3: 8, 6: 9}, {1: 7, 2: 9, 4: 8}, {1: 7, 3: 9, 4: 8}]
>>>import itertools
>>>list(itertools.product(*[[1, 2, 3, 4, 5, 6],[7, 8, 9]]))
>>>[(1, 7), (1, 8), (1, 9), (2, 7), (2, 8), (2, 9), (3, 7), (3, 8), (3, 9), (4, 7), (4, 8), (4, 9), (5, 7), (5, 8), (5, 9), (6, 7), (6, 8), (6, 9)]

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM