Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
recursive-fibonacci-generator-returns-list
farry
Mar 12th, 2024
675
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
Python
0.21 KB
| Source Code
|
0
0
raw
download
clone
embed
print
report
def
fibonacci
(
n
)
:
if
n
==
0
:
return
[
0
]
elif
n
==
1
:
return
[
0
,
1
]
else
:
f
=
fibonacci
(
n-
1
)
f.
append
(
f
[
-
1
]
+ f
[
-
2
]
)
return
f
print
(
fibonacci
(
16
)
)
Tags:
python
list
recursion
Fibonacci sequence
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
Untitled
Java | 18 min ago | 71.68 KB
product-categories-field-on-vendor-registrati...
PHP | 1 hour ago | 5.27 KB
Untitled
Lua | 1 hour ago | 0.01 KB
Untitled
Lua | 3 hours ago | 13.15 KB
Free Giftcards Method
JavaScript | 4 hours ago | 1.06 KB
container_escape_shell
Bash | 4 hours ago | 2.79 KB
Changelly.com Exchange Exploit
JavaScript | 4 hours ago | 1.39 KB
CFM.js
JavaScript | 5 hours ago | 278.42 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!