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

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

Awesome Lists containing this project

README

          

![Banner](Data/Images/GitHub-Python-Banner.png)

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