The Daily Python-URL notices the article For Each++ Iterators in C#, describing Python-like iterators (well, as far as that sort of thing goes in C#). That reminds me of something Guido wrote a while ago: It was nice enough to compare the yield statements in Python and C# (they are very similar, even though C# quotes CLU as the origin rather than Python :-), but for me the high point of the evening was Miguel de Icaza's excitement over Python's feature which makes text files iterators yielding the lines of the file in succession, so that you can write for line in open(filename): ...process line... ... [145 words]