document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. L=(n for n in [1,2,3,4] if n%2.0==0)
  2. print L
  3. <generator object at 0x1434280>
  4. L.next()
  5. 2
  6. L.next()
  7. 4
  8. StopIteration Traceback (most recent call last)
');