Einfache Python -Permutation, die Argument als zweiter Parameter vorliegt

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