def Paires(L): n=len(L) P=[0,0] for i in range(1,n): P[0]=L[i-1] for k in range(i+1,n+1): P[1]=L[k-1] print(P) return