标签: python python-3.x itertools
我有一个变量列表,我想创建所有可能列表的列表,而不用替换该列表。
例如,如果我的列表是[a, b, c],我想要[[a], [b], [c], [a, b], [a, c], [b, c], [a, b, c]]
[a, b, c]
[[a], [b], [c], [a, b], [a, c], [b, c], [a, b, c]]
我正在尝试使用下面的itertools从称为变量的列表中创建列表列表,但是无法弄清楚如何获得输出:
itertools
from itertools import combinations Lists = combinations(variables, 27)
谢谢