小编典典

在Python字典中获取键/值对的所有组合

python

这可能是一个愚蠢的问题,但是考虑到以下指示:

combination_dict = {"one": [1, 2, 3], "two": [2, 3, 4], "three": [3, 4, 5]}

我将如何获得此列表:

result_list = [{"one": [1, 2, 3], "two": [2, 3, 4]}, {"one": [1, 2, 3], "three": [3, 4, 5]}, {"two": [2, 3, 4], "three": [3, 4, 5]}]

换句话说,我希望字典中两个键/值对的所有组合都不能替换,而与顺序无关。


阅读 387

收藏
2021-01-20

共1个答案

小编典典

一种解决方案是使用itertools.combinations()

result_list = map(dict, itertools.combinations(
    combination_dict.iteritems(), 2))

编辑 :由于受欢迎的需求,这里是Python 3.x版本:

result_list = list(map(dict, itertools.combinations(
    combination_dict.items(), 2)))
2021-01-20