def est_parfait(n): if sum(diviseurs_stricts(n))==n: return True else: return False