0
Hallo guys, how do i create the fiibonacci series
3 Antworten
+ 4
Here's one way but there are hundreds more if you go to the code playground and search for 'fibonacci'
https://code.sololearn.com/c76KT0VWeyN1/?ref=app
+ 5
fib = [1,1]
for i in range(2,11):
fib.append(fib[i-1] + fib[i-2])
+ 1
thanks