I have a string s="abcde". I want to generate all possible permutations and write their in txt file. OUT File.txt
a b c d aa ab ac ad ae ba bb bc bd be ca cb cc cd ce da db dc dd de ea eb ec ed ee ... ... eeeda eeedb eeedc eeedd eeede eeeea eeeeb eeeec eeeed eeeee
I used the itertools but it always start with aaaaa.
itertools.permutations takes 2 arguments, the iterable and length of the permutations. If you do not specify the second agrument, it defaults to len(iterable). To get all lengths, you need to print permutations for each length:
Source: https://docs.python.org/2/library/itertools.html#itertools.permutations