all the permutation of string code example
Example 1: python all permutations of a string
>>> from itertools import permutations
>>> perms = [''.join(p) for p in permutations('stack')]
>>> perms
Example 2: find all permutations of a string
ABC
ACB
BAC
BCA
CBA
CAB