[code.view]

[top] / python / PyMOTW / exceptions / exceptions_StopIteration.py

     #!/usr/bin/env python
     # encoding: utf-8
     #
     # Copyright (c) 2008 Doug Hellmann All rights reserved.
     #
     """
     """
     
     __version__ = "$Id$"
     #end_pymotw_header
     
     l=[0,1,2]
     i=iter(l)
     
     print i
     print i.next()
     print i.next()
     print i.next()
     print i.next()
     

[top] / python / PyMOTW / exceptions / exceptions_StopIteration.py

contact | logmethods.com