A sample fibonacci sequence snippet.
# Fibonacci Sequence a, b = 0, 1 print(a) while(b<1000): print(b) a, b = b, a+b