3 lines
185 B
Python
3 lines
185 B
Python
>>> from itertools import combinations
|
|
>>> list(combinations(range(5),3))
|
|
[(0, 1, 2), (0, 1, 3), (0, 1, 4), (0, 2, 3), (0, 2, 4), (0, 3, 4), (1, 2, 3), (1, 2, 4), (1, 3, 4), (2, 3, 4)]
|