Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Fibonacci to the Nth number
def fib(n): '''returns the fibonacci sequence to the Nth number; Author: Wazim Karim''' result=[1,1] for i in range(0,n): result.append(result[i]+result[i+1]) return result print(fib(30))
run
|
edit
|
history
|
help
0
Breadth-First Path Finding
lesson 6 finallll
Ortalama
pico menu
CalcV3 with PLY
crown pattern
denemeler
salarysms
sum of odd numbers
Bisection method