Posts: 4,646
Threads: 1,493
Joined: Sep 2016
i have (a reference to) an iterator that came from some function. i need to loop through the iterator. i need to "know" (something that indicates) when the last pass of the loop is happening. my first thought is to get the value len(iterator). but not all iterators implement __len__(). so, i am looking for some other way to have a flag set to a ttue value during the last pass of the loop.
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Posts: 4,646
Threads: 1,493
Joined: Sep 2016
May-18-2019, 12:45 AM
(This post was last modified: May-18-2019, 12:53 AM by Skaperen.)
(May-18-2019, 12:14 AM)SheeppOSU Wrote: Code?
there isn't any code, yet.
(May-18-2019, 12:20 AM)micseydel Wrote: Python iterators do not support what you want. You could wrap it in something that caches look-ahead values and then you could query on that object, but I'll leave that as an exercise to the reader.
right. i already know that iterators don't support this. you mean like make a memory-hogging list that causes the process to get swapped in and out as the list is iterated while the body of the loop counts down from the size?
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Posts: 4,646
Threads: 1,493
Joined: Sep 2016
May-18-2019, 10:57 PM
(This post was last modified: May-18-2019, 11:04 PM by Skaperen.)
(May-18-2019, 01:54 AM)michalmonday Wrote: If by any chance you have to apply some additional action to the last iterated item ...
actually, i need to
not do an action on the last item.
@
micseydel i thought you meant to make a whole list. the one-behind generator from @
Yoriz looks like the way to go. i assume, now, that's what you meant.
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.