Ich möchte einige Kombinationen aller 160 Elemente in meiner Liste machen, aber ich möchte nicht alle möglichen Kombinationen machen oder es wird nie enden. Ich will nur etwas, sagen wir 1,2,3,4.Wie man Kombinationen nCr von x bis y (nCx -nCy) macht
Statt einer nach dem anderen zu tun:
combination = itertools.combinations(lst, 1)
combination = itertools.combinations(lst, 2)
combination = itertools.combinations(lst, 3)
combination = itertools.combinations(lst, 4)
Wie kann ich alle 4 tun ???
Mögliche doppelte von [Generieren aller Kombinationen einer Liste in Python] (http://stackoverflow.co m/questions/17434070/Generieren-alle-Kombinationen-einer-Liste-in-Python) – MikeJRamsey56