Fibonacci numbers generation using python
What are Fibonacci Numbers? The Fibonacci sequence is a series of numbers where a number is found by adding up the two numbers before it. Starting with 0 and 1,the sequence goes 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, and so forth. Written as a rule, the expression is xn = xn-1 + xn-2. Reference:http://www.livescience.com/37470-fibonacci-sequence.html
Run: python Fibonacci.py