This website works better with JavaScript
Home
Explore
Help
Sign In
Shellmiao
/
graduation_project
Watch
1
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Tree:
b815ec74a0
Branches
Tags
master
graduation_p...
/
code
/
recursion.py
recursion.py
68 B
History
Raw
1
2
3
4
def numbers(x):
if x > 0:
print(x)
numbers(x-1)