Tag Archives: exersize

Fibonacci numbers in Python

I’ve decided to learn Python because I’ve been hearing great things about it, and it has one of my favorite programming language features since I started functional programming: lambda expressions! Here is my first Python program for calculating the Fibonacci sequence! x, y = 0, 1 which = int(raw_input()) for i in range(which-2): t = [...]

Posted in Programming | Also tagged | Leave a comment