Answers for "how to pairwise permute in python"

0

how to pairwise permute in python

>>> import itertools
>>> x = [1,2,3,4]
>>> list(itertools.combinations(x, 2))
[(1, 2), (1, 3), (1, 4), (2, 3), (2, 4), (3, 4)]
Posted by: Guest on May-21-2020

Python Answers by Framework

Browse Popular Code Answers by Language