factorielle.py

Created by baptistemulacarrere1g3

Created on March 18, 2021

124 Bytes

factorielle


from math import *
def fact(n) :
    if n==0:
         return(1)
    else :
        return (n*fact(n-1))