# Fonction factorielle récurcive : def factorielle_2(n): if n<=1: return 1 else: return n*factorielle_2(n-1)