HOW TO DO THE FIB METHOD ON PYTHON SIMPLE
prevx=0
x=1
nextx=1
while True:
prevx=x
x=nextx
nextx=prevx+x
print prevx
<that is the exact code for infinite fib numbers> ask me for the guessing game code<>
Tags: python, fib, fibbonacci, fib method, fibbonacci method, fib for python, fibbonacci method for python, fib method for python, fibbonacci for python