Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Fibonnaci
#2
So you're getting the target value (what you want to be greater than in the sequence), and how many fibs beyond that point you're interested in.

The next task is to generate fibs, which you can do with a while loop.
last_number = 0
current_number = 1
while True:
    print(last_number)
    next_number = current_number + last_number
    last_number = current_number
    current_number = next_number

    # don't loop forever (just for testing, compare with user input when you do this)
    if current_number > 20:
        break
Reply


Messages In This Thread
Fibonnaci - by PythonNoob99 - Feb-21-2019, 09:07 PM
RE: Fibonnaci - by nilamo - Feb-21-2019, 10:17 PM
RE: Fibonnaci - by PythonNoob99 - Feb-22-2019, 03:19 PM
RE: Fibonnaci - by ichabod801 - Feb-22-2019, 03:28 PM
RE: Fibonnaci - by PythonNoob99 - Feb-22-2019, 03:32 PM
RE: Fibonnaci - by PythonNoob99 - Feb-26-2019, 11:43 AM
RE: Fibonnaci - by ichabod801 - Feb-26-2019, 04:39 PM
RE: Fibonnaci - by PythonNoob99 - Feb-26-2019, 07:39 PM
RE: Fibonnaci - by ichabod801 - Feb-27-2019, 04:32 AM
RE: Fibonnaci - by PythonNoob99 - Feb-27-2019, 05:28 PM
RE: Fibonnaci - by ichabod801 - Feb-27-2019, 06:15 PM
RE: Fibonnaci - by PythonNoob99 - Feb-28-2019, 08:35 AM
RE: Fibonnaci - by ichabod801 - Feb-28-2019, 07:32 PM
RE: Fibonnaci - by PythonNoob99 - Feb-28-2019, 07:46 PM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020