An open API service indexing awesome lists of open source software.

https://github.com/loosedwhale/fibonacci-math-function-in-python

Fibonacci Sequence Generator now in a easy to use python program. For further information read README.md.
https://github.com/loosedwhale/fibonacci-math-function-in-python

fibonacci-calculator fibonacci-generator fibonacci-sequence math python python3

Last synced: about 2 months ago
JSON representation

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

Awesome Lists containing this project

README

        

# 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, ...