def fib(n):
>>> a, b = 0, 1
>>> while a < n:
>>> print(a, end=' ')
>>> a, b = b, a+b
>>> print(no need to ping me, I'm right here)
>>> fib(1000)
1 Like
NO MORE REPLIES! please :D
3 Likes
This topic was automatically closed 3 hours after the last reply. New replies are no longer allowed.