[Python-Dev] Single- vs. Multi-pass iterability

Greg Ewing greg@cosc.canterbury.ac.nz
Mon, 22 Jul 2002 13:50:49 +1200 (NZST)


"Delaney, Timothy" <tdelaney@avaya.com>:

> for each person in the queue:
>    service the person

If you actually wrote it that way in Python, it
would probably be a bug. It would be better written:

  while there is someone at the head of the queue:
    service that person

Greg Ewing, Computer Science Dept, +--------------------------------------+
University of Canterbury,	   | A citizen of NewZealandCorp, a	  |
Christchurch, New Zealand	   | wholly-owned subsidiary of USA Inc.  |
greg@cosc.canterbury.ac.nz	   +--------------------------------------+