私は次の辞書を持っています:
test = OrderedDict({
"one":1,
"two":2,
"three":3
})
そして、私は次の結果を得たいと思っています:
{'three':3, 'two':2, 'one':1}
{'three':3, 'one':1, 'two':2}
{'two':2, 'three', 'one':1}
{'two':2, 'one':1, 'three':3}
{'one':1, 'three':3, 'two':2}
{'one':1, 'two':2, 'three':3}
これらは、指定されたテスト辞書の順列を使用して生成できるすべての辞書です。
今のところ、次を使用して可能な順列のタプルのみを取得できます。
for perm in itertools.permutations(test):
print(perm)
出力します:
('three', 'two', 'one')
('three', 'one', 'two')
('two', 'three', 'one')
('two', 'one', 'three')
('one', 'three', 'two')
('one', 'two', 'three')
itertools を使用して、タプルの代わりにキー/値を持つ辞書を取得するにはどうすればよいですか?
編集: テストを OrderedDict に変更しました