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
8
Random module
PyMeta
Depth First Search - Find path
Gedanken Tests - inner Class, Struct ..
My first experience on rextester !
HW. InsertionSort in Descending order
BiseccionPython
Guessing game
BasicFunctionsPrograms,py