Answers for "all permutations of array in python"

7

pyhton permutations

# A Python program to print all permutations using library function 
from itertools import permutations
perm = permutations([1, 2, 3])
for i in list(perm):
    print (i)
# (1, 2, 3)
# (1, 3, 2)
# (2, 1, 3)
# (2, 3, 1)
# (3, 1, 2)
# (3, 2, 1)
Posted by: Guest on May-13-2021
2

python all permutations of a string

>>> from itertools import permutations
>>> perms = [''.join(p) for p in permutations('stack')]
>>> perms
Posted by: Guest on November-08-2020

Code answers related to "all permutations of array in python"

Python Answers by Framework

Browse Popular Code Answers by Language