我希望执行以下代码:
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))
如何在不明确知道 temp 中有多少条目的情况下为 itertools.product 正确格式化输入以在第一段代码中产生相同的结果?