Prosty wynik drukowania permutacji Python bez pętli

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