Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Combination in python



from itertools import permutations
from itertools import combinations
p = permutations([1,2,4]) # or  permutations([1, 2, 3], 2)
for i in p:
    print(i)
c = combinations([1,2,3],2)
for j in c:
    print(j)
    
    
Source by docs.python.org #
 
PREVIOUS NEXT
Tagged: #Combination #python
ADD COMMENT
Topic
Name
4+5 =