Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
problem in using enumerate
#4
(Oct-09-2023, 03:36 PM)perfringo Wrote:
(Oct-09-2023, 01:12 PM)akbarza Wrote: when you write and run the first for loop(lines 6.7), some data will be shown to you. but then if you write and run the for loop again (lines 9,10), nothing will be displayed to you, also as you can see in the code, list(e) is empty. why?
thanks

Not "some data" but "all data".

enumerate() creates enumerate object which in turn uses iterator's __next()__ method. So iterator gets exhausted:

Quote:A container object (such as a list) produces a fresh new iterator each time you pass it to the iter() function or use it in a for loop. Attempting this with an iterator will just return the same exhausted iterator object used in the previous iteration pass, making it appear like an empty container.

So:

>>> e = enumerate(range(10, 13))
>>> print(*e)
(0, 10) (1, 11) (2, 12)
>>> print(*e)

>>> e = enumerate(range(10, 13))
>>> e = list(enumerate(range(10, 13)))  # make list from enumerate object for reuse
>>> print(*e)
(0, 10) (1, 11) (2, 12)
>>> print(*e)
(0, 10) (1, 11) (2, 12)

hi
I have not seen * before in such syntax. what is it doing and for what is it used?
thanks
Reply


Messages In This Thread
problem in using enumerate - by akbarza - Oct-09-2023, 01:12 PM
RE: problem in using enumerate - by perfringo - Oct-09-2023, 03:36 PM
RE: problem in using enumerate - by akbarza - Oct-11-2023, 09:52 AM
RE: problem in using enumerate - by perfringo - Oct-11-2023, 10:55 AM
RE: problem in using enumerate - by deanhystad - Oct-09-2023, 03:46 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  The use of enumerate Frankduc 3 1,792 Jan-31-2022, 09:40 PM
Last Post: deanhystad
  Need to understand the way enumerate() function works abhishekambastha 2 2,545 Sep-16-2018, 08:21 PM
Last Post: snippsat

Forum Jump:

User Panel Messages

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