Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
fibonaccii.py
#python 3.5.2 #fibonaccii series #0 1 1 2 3 5 8 13 21 34 def fib(n): a=0 b=1 print(a,' ',b,' ',end='') for i in range(n-2): c=a+b print(c,' ',end='') a=b b=c fib(10)
run
|
edit
|
history
|
help
0
Game4
Tupples
kenken1
inverse matrix gauss jordan
Python_Hello_World
L4-HW final
Remove all Adjacent duplicates using a loop
substring
Ej2_python_204676887
Rectangle Perimiter