Einfacher Python -Permutationsergebnis ohne für die Schleife

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