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.
- Host: GitHub
- URL: https://github.com/loosedwhale/fibonacci-math-function-in-python
- Owner: LoosedWhale
- Created: 2023-01-16T07:41:55.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-05T20:11:47.000Z (over 2 years ago)
- Last Synced: 2025-02-13T23:45:04.489Z (4 months ago)
- Topics: fibonacci-calculator, fibonacci-generator, fibonacci-sequence, math, python, python3
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: 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 \
![]()
## 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, ...