Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Administrator
/
lesson7_1
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
4af95786566bc10f3c42f2386edff51c0814366b
Switch branch/tag
lesson7_1
1.py
Find file
Blame
History
Permalink
save project
· 4af95786
BellCodeEditor
committed
a year ago
4af95786
1.py
84 Bytes
Edit
1
2
3
4
5
6
def
f
(
n
):
if
n
==
1
:
return
1
return
n
+
f
(
n
-
1
)
a
=
f
(
100
)
print
(
a
)