Next: More Control Flow Up: An Informal Introduction Previous: Lists

First Steps Towards Programming

Of course, we can use Python for more complicated tasks than adding two and two together. For instance, we can write an initial subsequence of the Fibonacci series as follows:


>>> # Fibonacci series:
... # the sum of two elements defines the next
... a, b = 0, 1
>>> while b < 10:
...       print b
...       a, b = b, a+b
... 
1
1
2
3
5
8
>>>
This example introduces several new features.



Next: More Control Flow Up: An Informal Introduction Previous: Lists


guido@cwi.nl