[ URL ] : https://notes.fr/2018/02/03/Script-Python-Factorielle/ [ CATEGORY ] : /Langage/Python [ TAGS ] : factorielle, python, script [ CREATED ] : 2018-02-03 17:15 [ UPDATED ] : 2023-12-24 16:28 [ AUTHOR ] : 4L1N3 Factorielle et Python 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