This website works better with JavaScript
Accueil
Explorer
Aide
Connexion
Shellmiao
/
graduation_project
Suivre
1
Voter
0
Fork
0
Fichiers
Tickets
0
Pull Requests
0
Wiki
Aborescence:
b815ec74a0
Branches
Tags
master
graduation_p...
/
code
/
recursion.py
recursion.py
68 B
Historique
Raw
1
2
3
4
def numbers(x):
if x > 0:
print(x)
numbers(x-1)