Python Forum
Why not use len(alist) in an iterator?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Why not use len(alist) in an iterator?
#1
Python lists are integer-indexed arrays. That is why you can retrieve an element from the list with a number: alphabet[13]

I often read you shouldn't use len(alist) like this (Although, I also see this often.):

for i in range(len(alphabet)):
    # do something
I would like to know why this is said.

The only reason I can think of is: enumerate is a generator, which is small.

However, unless the lists we are using are ginormous, you will not notice the difference on a modern computer. People who are tempted to create giant lists will, in all probability, put the list values in some form of database and use a generator to access the database instead, thereby not using giant lists at all.

from string import ascii_lowercase

alphabet = [a for a in ascii_lowercase]
for a in alphabet:
    print(a, end=' ')

for i in range(len(alphabet)):
    print(alphabet[i], end=' ')

for num, value in enumerate(alphabet, start=5):
    print(f'num = {num}, value =  {value}', end=' ')

gen = enumerate(alphabet, 5)
next(gen) # (5, 'a') enumerate is a generator
I don't know how enumerate works, but I can easily fake it:

# fake enumerate function
def my_enum(alist, num):
    for v in alist:
        tup = (alist.index(v) + num, v)
        yield tup

gen = my_enum(alphabet, 5)
next(gen) # (5, 'a')
If a list is not very big in memory, why should I complicate matters with enumerate to reach exactly the same end?

The generator seems more complicated and less straightforward.

gen = ((ascii_lowercase.index(a), a) for a in ascii_lowercase)
start = 5
for index, value in gen:
    print(f'index = {index + start}, value = {value}')
Reply


Messages In This Thread
Why not use len(alist) in an iterator? - by Pedroski55 - Jun-26-2024, 11:48 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  prime numbers with iterator and generator cametan_001 8 3,595 Dec-17-2022, 02:41 PM
Last Post: cametan_001
  resetting an iterator to full Skaperen 7 11,051 Feb-20-2022, 11:11 PM
Last Post: Skaperen
  popping an iterator Skaperen 11 5,555 Oct-03-2021, 05:08 PM
Last Post: Skaperen
  q re glob.iglob iterator and close jimr 2 3,128 Aug-23-2021, 10:14 PM
Last Post: perfringo
  Problem with an iterator grimm1111 9 6,039 Feb-06-2021, 09:22 PM
Last Post: grimm1111
  Multi-class iterator Pedroski55 2 3,069 Jan-02-2021, 12:29 AM
Last Post: Pedroski55
  is a str object a valid iterator? Skaperen 6 7,305 Jan-27-2020, 08:44 PM
Last Post: Skaperen
  discard one from an iterator Skaperen 1 2,584 Dec-29-2019, 11:02 PM
Last Post: ichabod801
  looking for a sprcil iterator Skaperen 7 4,726 Jun-13-2019, 01:40 AM
Last Post: Clunk_Head
  last pass of for x in iterator: Skaperen 13 7,785 May-20-2019, 10:05 PM
Last Post: Yoriz

Forum Jump:

User Panel Messages

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