Python Forum
Need to understand the way enumerate() function works
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Need to understand the way enumerate() function works
#2
The enumate function expressed as generator looks like this:

def enum_gen(iterable, start=0, step=1)
    for element in iterable:
        yield (start, element) # <- Here the generator is paused till the next iteration
        start += step # increment the internal counter by step

gen = enum_gen([1,2,3,4]) # <- This creates the generator, no code execution
next(gen) # this is what the for-loop does implicit
# until a StopIteration has been raised.
# the Exception comes from the generator, when it has been finished with the for-loop
Almost dead, but too lazy to die: https://sourceserver.info
All humans together. We don't need politicians!
Reply


Messages In This Thread
RE: Need to understand the way enumerate() function works - by DeaD_EyE - Sep-16-2018, 02:47 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  problem in using enumerate akbarza 4 908 Oct-11-2023, 10:55 AM
Last Post: perfringo
  The use of enumerate Frankduc 3 1,792 Jan-31-2022, 09:40 PM
Last Post: deanhystad
  Don't Understand Recursive Function muzikman 9 3,850 Dec-03-2020, 05:10 PM
Last Post: muzikman
  Function throws error but then works? Milfredo 10 3,959 Sep-12-2020, 05:16 AM
Last Post: Milfredo
  Trying to understand how import works in python patrick99e99 3 3,960 Jun-12-2018, 04:48 AM
Last Post: patrick99e99
  Don't understand why this quicksort code works lupoalberto 6 4,189 Mar-27-2018, 10:01 AM
Last Post: lupoalberto
  i don't understand how to use a variable outside of a function? Rius2 6 5,455 Oct-04-2017, 06:31 PM
Last Post: wavic
  understand function hermann 3 3,572 Sep-06-2017, 10:44 AM
Last Post: hermann
  Can't understand the output of this recursion function bigmit37 5 4,091 Apr-04-2017, 11:15 PM
Last Post: Ofnuts

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020