https://github.com/shonharsh/python-fibonacci
A Python Fobonacci code exercies
https://github.com/shonharsh/python-fibonacci
academic artificial-intelligence atom automation bot config education fibonacci git guide learning markdown process python recursion studio testing training-materials trending windows
Last synced: 2 months ago
JSON representation
A Python Fobonacci code exercies
- Host: GitHub
- URL: https://github.com/shonharsh/python-fibonacci
- Owner: ShonHarsh
- License: mit
- Created: 2024-06-22T18:07:34.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-22T18:18:28.000Z (almost 2 years ago)
- Last Synced: 2025-07-20T05:53:07.034Z (11 months ago)
- Topics: academic, artificial-intelligence, atom, automation, bot, config, education, fibonacci, git, guide, learning, markdown, process, python, recursion, studio, testing, training-materials, trending, windows
- Language: Python
- Homepage:
- Size: 25.4 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README

### Fibonacci Sequence
In mathematics, the [Fibonacci Sequence](https://en.wikipedia.org/wiki/Fibonacci_sequence) is a sequence in which each number is the
sum of the two preceding ones.
This is a code exercise and I solve it in two ways.
1. The first method is a while loop. This prints all the digits up to the input number.
2. The second method is using recursion. This prints the n'th number.