Sujet : Re: 0!=1 ?
De : om+news (at) *nospam* miakinen.net (Olivier Miakinen)
Groupes : fr.sci.mathsDate : 15. Mar 2023, 18:39:45
Autres entêtes
Organisation : There's no cabale
Message-ID : <tusvt2$1i19$1@cabale.usenet-fr.net>
References : 1 2 3 4
User-Agent : Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko/20100101 Firefox/60.0 SeaMonkey/2.53.1
Le 15/03/2023 à 18:32, Dominique a écrit :
Le 15/03/2023 à 17:34, Olivier Miakinen a écrit :
$ python
from math import factorial
factorial(5)
120
factorial(0)
1
Factorial : et hop, une fonction que je ne connaissais pas :)
À vrai dire moi non plus.
Mais je me suis dit qu'il serait étonnant qu'elle n'existe pas, et
aussi que le module math serait le plus approprié pour l'y trouver :
<
https://docs.python.org/3/library/math.html>.
D'ailleurs on y trouve aussi une confirmation de ce dont parlait
Michel, la fonction gamma (Γ) :
$ python
from math import gamma
gamma(6)
120.0
gamma(1)
1.0
-- Olivier Miakinen