python print all permutations code example
Example 1: all permutations python
import itertools
print(list(itertools.permutations([1,2,3])))
Example 2: python all permutations of a string
>>> from itertools import permutations
>>> perms = [''.join(p) for p in permutations('stack')]
>>> perms