def diviseurs_stricts(n): L=[] for i in range(1,n//2+1): if n%i==0: L.append(i) return L