/Fibonacci-math-function-in-python

Fibonacci Sequence Generator now in a easy to use python program. For further information read README.md.

Primary LanguagePython

Fibonacci Sequence Generator

Description

This program allows you to generate the first N numbers of the Fibonacci sequence, where each number is the sum of the previous two numbers, starting from 0 and 1.

Made with python
python

How to use

Run the program.
Input the number of Fibonacci numbers you would like to generate.
The program will generate and print out the specified number of Fibonacci numbers.

For example :

0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ...