index
:
github/perlweeklychallenge-club.git
master
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
challenge-041
/
lubos-kolouch
/
python
/
ch-2.py
blob: 02b509279ebfc2e728897d1b6182b86c826b9741 (
plain
)
1
2
3
4
5
6
7
8
#!python3
l
=
[
1
,
1
]
for
i
in
range
(
2
,
20
):
l
.
append
(
l
[
i
-
2
]
+
l
[
i
-
1
]
+
1
)
print
(
l
)