Generatoren I


#!/usr/bin/python2.2
from __future__ import generators

L=[1,2,3]
i = iter(L)
a,b,c = i
print a,b,c