+ 1

Wondering how to write fibbonachi sequence with what we have learned so far... I understand this is more of a math question

Still very curious

8th Feb 2017, 4:02 AM
Slitherboy
Slitherboy - avatar
6 odpowiedzi
+ 10
Well done, indeed. You can assign it like this: x, y = y, x + y and you don't need n then :)
8th Feb 2017, 8:06 AM
Kuba Siekierzyński
Kuba Siekierzyński - avatar
+ 9
it's math questions like this and fizzbuzz that'll make me fail interviews, not because I can't code it, but because I don't understand math in general :c
8th Feb 2017, 4:44 AM
Ahri Fox
Ahri Fox - avatar
+ 6
x = 1 y = 1 while x <=100 and y <=100: print(y + x) n = x + y x = y y = n did it! The problem was the x and y variables changed if I just wrote x = y and y = x + y. I had to assign n and it works
8th Feb 2017, 4:27 AM
Slitherboy
Slitherboy - avatar
+ 3
Have you tried writing any code yet? We would be glad to help if you could show any work you've done so far.
8th Feb 2017, 4:05 AM
James Durand
James Durand - avatar
+ 2
Well done!
8th Feb 2017, 4:30 AM
James Durand
James Durand - avatar
+ 1
Thanks got all the support guys. I'm 15 and I started programming for the problem-solving aspect. Can't wait to learn more.
8th Feb 2017, 1:37 PM
Slitherboy
Slitherboy - avatar