具有任意数量集的Python itertools.product

我希望执行以下代码:

temp = []
temp.append([1,2])
temp.append([3,4])
temp.append([5,6])

print list(itertools.product(temp[0],temp[1],temp[2]))

但是,我想以任意长度执行temp.即更像是:

print list(itertools.product(temp))

如何正确地为itertools.product格式化输入以在第一段代码中产生相同的结果,而不明确知道temp中有多少条目?

解决方法:

print list(itertools.product(*temp))

使用*将可迭代的参数解压缩为单独的位置参数.

上一篇:python – 来自右侧的islice


下一篇:Python3 for in if 和 逻辑判断 的使用