1.1.2
Try it!
paste to highlight
Download
Source
|
Bugtracker
Documentation
in autumnal colors
Old website
Python fib
Python code posted
created at 25 Jul 21:54
Edit
|
Back
1
2
3
4
5
def
fib
(
num
)
if
num
>=
1
:
return
num
return
fib
(
num
-
1
)
+
fib
(
num
-
2
)
88 Bytes in 2 ms with coderay