如何在 python 中动态生成列表组合

How to generate dynamically combinations of list in python

我想在 python 中动态生成组合,我有一个变量 sessionperweeks(介于 2 和 6 之间)

if sessionperweeks==2

    for i in range(0,7):
        for j in range(i+1,7):
            combins.append([i,j])

if sessionperweeks==3

    for i in range(0,7):
        for j in range(i+1,7):
            for k in range(j+1,7):
                combins.append([i,j,k])

等等

给你,使用 itertools 中的 combinations 从 0-6 每周选择课程:

from itertools import combinations

sessionsperweek = int(input("Enter sessions per week:"))

combins = list(combinations(range(7), sessionsperweek))
print("Your possible combinations are:")
print(combins)

带有 2 的 运行 示例(自 OP 更新后):

Enter sessions per week:2
Your possible combinations are:
[(0, 1), (0, 2), (0, 3), (0, 4), (0, 5), (0, 6), (1, 2), (1, 3), (1, 4), (1, 5), (1, 6), (2, 3), (2, 4), (2, 5), (2, 6), (3, 4), (3, 5), (3, 6), (4, 5), (4, 6), (5, 6)]

示例运行:

Enter sessions per week:6
Your possible combinations are:
[(0, 1, 2, 3, 4, 5), (0, 1, 2, 3, 4, 6), (0, 1, 2, 3, 5, 6), (0, 1, 2, 4, 5, 6), (0, 1, 3, 4, 5, 6), (0, 2, 3, 4, 5, 6), (1, 2, 3, 4, 5, 6)]