Neil Cerutti wrote:

> [linked lists] don't work well with Python iterators, which aren't
> suitable for a linked list's purposes--so you have to give up the
> happy-joy for loop syntax in favor of Python's frowny-sad while loops.

You can always move the while-loop into a generator and use for-loops
happily ever after.

Peter
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to