Answers for "permutations with for python"

13

all permutations python

import itertools
print(list(itertools.permutations([1,2,3])))
Posted by: Guest on May-02-2020
3

python permutation

import itertools

a = [1, 2, 3]
n = 3

perm_iterator = itertools.permutations(a, n)

for item in perm_iterator:
    print(item)
Posted by: Guest on October-30-2020
1

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

Python Answers by Framework

Browse Popular Code Answers by Language