Write an initial sub-sequence of the Fibonacci series : While « Language Basics « Python






Write an initial sub-sequence of the Fibonacci series

 
# Fibonacci series:
# the sum of two elements defines the next

a, b = 0, 1          # a multiple assignment: the variables a and b simultaneously 
                     # get the new values 0 and 1.
while b < 10:
       print b
       a, b = b, a+b

           
         
  








Related examples in the same category

1.While loop with counter-controlled repetition.While loop with counter-controlled repetition.
2.While loop with sentinel-controlled repetiton.While loop with sentinel-controlled repetiton.
3.Analysis of examination results.
4.Use if inside whileUse if inside while
5.While loopWhile loop
6.How to use whileHow to use while
7.While loop demoWhile loop demo
8.While with breakWhile with break
9.While with elseWhile with else
10.Guess My Number
11.A trailing comma avoids the newline after the output