Why does itertools.permutations() return a list of characters or digits for each permutation, instead of just returning a string?
For example:
>&g
I have not tried, but most likely should work
comb = itertools.permutations("1234",4) for x in comb: ''.join(x)