“Programme Python pour trouver factoriel” Réponses codées

Python calcule factoriel

def factorial(n):
    fact = 1
    for num in range(2, n + 1):
        fact = fact * num
    return(fact)
Obedient Ox

Programme Python pour trouver factoriel

def factorial_iter(n):
    product = 1
    for i in range(n):
        product = product * (i+1)
    return product

def factorial_recursive(n):
    if n == 1 or n == 0:
        return 1
    return n * factorial_recursive(n-1)

# f = factorial_iter(5)
f = factorial_recursive(0)
print(f)
Coding boy Hasya

factorielle en python

def fact(n):
  return 1 if (n==0 or n==1) else n*fact(n-1)
fact(3)
Precious Parrot

Réponses similaires à “Programme Python pour trouver factoriel”

Questions similaires à “Programme Python pour trouver factoriel”

Plus de réponses similaires à “Programme Python pour trouver factoriel” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code