[ TAG ] : python

[ TITLE    ] : Factorielle et Python
[ CATEGORY ] : //
[ DATE     ] :

Fonction factorielle en Python Fonction Factorielle#!/usr/bin/env python3def factoriel(n): """le factoriel""" if n <= 1: return 1 else: return n * factoriel(n-1)a = int(input("Veuiller entrer un nombre : "))print(factoriel(a)) A lancer de la façon suivante : # python3 monscript.py

ist-item">Temps1 -->