Looping Theory

The art of creating loops so complex, it'll drive you mad.

But don't worry, we've got the cure.

Example: Fibonacci Loop

<code>
a = 0
b = 1
while True:
    print(a)
    print(b)
    a = a + b
    b = b + a
</code>

Try not to think about it too much.

Or don't.

Just close your eyes and pretend it's a nice, normal loop.