George Sakkis wrote: > I'm often lazy to import it to use, say izip() only once; I just go > with zip() instead. I think that range() and zip() are going to return views or iterators in Py3k, so you won't be needing izip() any more. -- Greg