Always hear about Python. Just registered as an student in course "Introduction to python programming" in coursera.org. Made a small blog to share my learning, insight and efforts :)
# Fibonacci series: # the sum of two elements defines the next b, c = 0, 1 while c < 200: print c, b, c = c, b+c
Console Output :
1 1 2 3 5 8 13 21 34 55 89 144