我想使用如下表单中指定的元素组合生成一堆列表:
[[10, 20], [30, 40], [50, 60]]
这意味着第一个元素的可用值是10和20,第二个元素的可用值是30和40,依此类推(为简洁起见,我为每个元素使用了两个元素选项;可能有比那更多的)。我想使用这个规范使用这些元素的组合生成所有列表(包括没有任何元素的可能性),生成如下内容:
[10]
[20]
[10, 30]
[10, 40]
[20, 30]
[20, 40]
[10, 30, 50]
[10, 30, 60]
[10, 40, 50]
[10, 40, 60]
[20, 30, 50]
[20, 30, 60]
[20, 40, 50]
[20, 40, 60]
我觉得好像itertools
可以用于此,但我不确定如何实现算法来生成这样的列表。什么是一个好的,一般的方法(例如,不限于三个硬编码的嵌套循环的三个元素)从我上面显示的规范生成列表?
作为尝试,我有以下内容:
import itertools
element_specifications = [[10, 20], [30, 40], [50, 60]]
lists = [list(list_configuration) for list_configuration in list(itertools.product(*element_specifications))]
for list_configuration in lists:
print(list_configuration)
这会产生以下列表,但请注意,它忽略了因使用 no 元素而产生的可能性:
[10, 30, 50]
[10, 30, 60]
[10, 40, 50]
[10, 40, 60]
[20, 30, 50]
[20, 30, 60]
[20, 40, 50]
[20, 40, 60]
编辑:我想出了以下内容,但对我来说似乎非常不优雅:
import itertools
element_specifications = [[10, 20], [30, 40], [50, 60]]
lists = []
for length in range(1, len(element_specifications) + 1):
lists.extend([list(list_configuration) for list_configuration in list(itertools.product(*element_specifications[:length]))])
for list_configuration in lists:
print(list_configuration)
答案 0 :(得分:2)
您可以根据找到的解决方案创建双循环列表解析:
>>> elements = [[10, 20], [30, 40], [50, 60]]
>>> [x for i in range(len(elements)) for x in itertools.product(*elements[:i+1])]
[(10,),
(20,),
(10, 30),
(10, 40),
(20, 30),
(20, 40),
(10, 30, 50),
(10, 30, 60),
(10, 40, 50),
(10, 40, 60),
(20, 30, 50),
(20, 30, 60),
(20, 40, 50),
(20, 40, 60)]
或者使用enumerate
:
>>> [x for i, _ in enumerate(elements) for x in itertools.product(*elements[:i+1])]