Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Mestari Yousra
NOTRE_PROJEEET
559d6318a61171477445b6b06c16153dfda0ad8c
559d6318a61171477445b6b06c16153dfda0ad8c
Switch branch/tag
NOTRE_PROJEEET
test1
Find file
Normal view
History
Permalink
test1
97 Bytes
Newer
Older
Fonction factorielle
Mestari Yousra
committed
May 02, 2017
1
2
3
4
5
6
def facto(n):
if n==0:
return 1
if n==1:
return 1
return n*facto(n-1)