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
24e5bdffc6d50af212efcb0a9238a45e569cd834
24e5bdffc6d50af212efcb0a9238a45e569cd834
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)