First time here? Check out the FAQ!
answered 2022-05-18 16:26:48 +0100
If you want permutations, then you can use Permutations generator:
Permutations
t = ['a','b','c','d'] for p in Permutations(t): print(p)