The Fibonacci sequence is a famous mathematical pattern credited to Italian mathematician Fibonacci in the 13th century (though others had discovered it even earlier). The sequence begins with 0 and 1, and the next number is always the sum of the previous two numbers. The sequence continues forever:
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987 . . .
The Fibonacci sequence has applications in music composition, stock market prediction, the pattern of florets in the head of sunflowers, and many other areas. This program lets you calculate the sequence as high as you are willing to go. More information about the Fibonacci sequence can be found at https://en.wikipedia.org/wiki/Fibonacci_number.
When you run fibonacci.py, the output will look like this:
Fibonacci Sequence, by Al Sweigart [email protected]
--snip--
Enter the Nth Fibonacci number you wish to
calculate (such as 5, 50, 1000, 9999), or QUIT to quit:
> 50
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597, 2584, 4181, 6765, 10946, 17711, 28657, 46368, 75025, 121393, 196418, 317811, 514229, 832040, 1346269, 2178309, 3524578, 5702887, 9227465, 14930352, 24157817, 39088169, 63245986, 102334155, 165580141, 267914296, 433494437, 701408733, 1134903170, 1836311903, 2971215073, 4807526976, 7778742049
Because Fibonacci numbers quickly become very large, lines 46 to 50 check if the user has entered a number that’s 10,000 or larger and displays a warning that it may take some time for the output to finish displaying on the screen. While your programs can quickly do millions of calculations almost instantly, printing text to the screen is relatively slow and could take several seconds. The warning in our program reminds the user they can always terminate the program by pressing ctrl-c.
1. """Fibonacci Sequence, by Al Sweigart [email protected]
2. Calculates numbers of the Fibonacci sequence: 0, 1, 1, 2, 3, 5, 8, 13...
3. This code is available at https://nostarch.com/big-book-small-python-programming
4. Tags: short, math"""
5.
6. import sys
7.
8. print('''Fibonacci Sequence, by Al Sweigart [email protected]
9.
10. The Fibonacci sequence begins with 0 and 1, and the next number is the
11. sum of the previous two numbers. The sequence continues forever:
12.
13. 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987...
14. ''')
15.
16. while True: # Main program loop.
17. while True: # Keep asking until the user enters valid input.
18. print('Enter the Nth Fibonacci number you wish to')
19. print('calculate (such as 5, 50, 1000, 9999), or QUIT to quit:')
20. response = input('> ').upper()
21.
22. if response == 'QUIT':
23. print('Thanks for playing!')
24. sys.exit()
25.
26. if response.isdecimal() and int(response) != 0:
27. nth = int(response)
28. break # Exit the loop when the user enteres a valid number.
29.
30. print('Please enter a number greater than 0, or QUIT.')
31. print()
32.
33. # Handle the special cases if the user entered 1 or 2:
34. if nth == 1:
35. print('0')
36. print()
37. print('The #1 Fibonacci number is 0.')
38. continue
39. elif nth == 2:
40. print('0, 1')
41. print()
42. print('The #2 Fibonacci number is 1.')
43. continue
44.
45. # Display warning if the user entered a large number:
46. if nth >= 10000:
47. print('WARNING: This will take a while to display on the')
48. print('screen. If you want to quit this program before it is')
49. print('done, press Ctrl-C.')
50. input('Press Enter to begin...')
51.
52. # Calculate the Nth Fibonacci number:
53. secondToLastNumber = 0
54. lastNumber = 1
55. fibNumbersCalculated = 2
56. print('0, 1, ', end='') # Display the first two Fibonacci numbers.
57.
58. # Display all the later numbers of the Fibonacci sequence:
59. while True:
60. nextNumber = secondToLastNumber + lastNumber
61. fibNumbersCalculated += 1
62.
63. # Display the next number in the sequence:
64. print(nextNumber, end='')
65.
66. # Check if we've found the Nth number the user wants:
67. if fibNumbersCalculated == nth:
68. print()
69. print()
70. print('The #', fibNumbersCalculated, ' Fibonacci ',
71. 'number is ', nextNumber, sep='')
72. break
73.
74. # Print a comma in between the sequence numbers:
75. print(', ', end='')
76.
77. # Shift the last two numbers:
78. secondToLastNumber = lastNumber
79. lastNumber = nextNumber
After entering the source code and running it a few times, try making experimental changes to it. On your own, you can also try to figure out how to do the following:
This is a base program, so there aren’t many options to customize it. Instead, consider: how could you use this program? What other useful sequences could be programmed?