If I use "itertools.permutations", I don't get all possible combinations. (i.e. "abb" or "cbc")
import itertools
charList = ["a", "b", "c"]
per = itertools.permutations(charList, 3)
for val in per:
print(val)
I'm searching for something like "itertools.product", but it works only for numbers.