Einfache Python -Permutation, um die Ausgabe zu erhalten

from itertools import permutations 
print(list(permutations([1,2,3])))
Outrageous Ostrich