So I was reading some examples and trying to get them to work but nothing happens.
>>> # Fibonacci series:
>>> # the sum of two elements defines the next
>>> a, b = 0, 1
>>> while b < 10:
print b,
a, b = b, a+b
What do I do to get Python to execute this?