使用给定变量的所有可能组合在python中生成字典

时间:2013-12-15 05:39:56

标签: python math data-structures dictionary combinations

我想要一个包含所有格式的字典的字典。

[player_bullets“[0-6]”,player_last_block“Boolean”,player_prev“[1-3]”,comp_bullets“[0-6]”,comp_last_block“Boolean”,comp_prev“[1-3]”]

并且全部为[1 / 1,1 / 1,1 / 1]

问题是需要1764个不同的条目(7 * 2 * 3 * 7 * 2 * 3)。

如果有人可以帮我生成这本词典,那就太棒了。

1 个答案:

答案 0 :(得分:4)

itertools.product(range(0,6), [True,False], range(1,3), ...)