小编Ham*_*rag的帖子

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

假设我在python中有2个列表:

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

values = [7, 8, 9]
Run Code Online (Sandbox Code Playgroud)

我希望从这两个列表中获得所有排列

就像是:

d = [{1:7, 2:8, 3:9}, {1:8, 2:9, 3:7}, ....... ]
Run Code Online (Sandbox Code Playgroud)

我怎么能实现这一目标?

python dictionary permutation

3
推荐指数
1
解决办法
2614
查看次数

标签 统计

dictionary ×1

permutation ×1

python ×1