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 :)
Friday, October 25, 2013
Fibonacci series
# Fibonacci series:
# the sum of two elements defines the next
b, c = 0, 1
while c < 200:
print c,
b, c = c, b+c
No comments:
Post a Comment