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?
#3
Should not use range(len(sequence)) when can just simple loop over and get the result.
from string import ascii_lowercase

alphabet = [a for a in ascii_lowercase]
for letter in alphabet:
    print(letter, end=' ')
Output:
a b c d e f g h i j k l m n o p q r s t u v w x y z
So over there is no manipulation of index,the just use a simple loop

We see to often range(len(sequence)) used when need manipulation of index,often this is a not a good way.
To make simple example that need manipulation of index,only now we use enumerate.
from string import ascii_lowercase

alphabet = [a for a in ascii_lowercase]
increment = 5
for index, letter in enumerate(alphabet):
    new_index = index + increment
    print(f'original index = {index}, new index = {new_index}, letter = {letter}')
Output:
original index = 0, new index = 5, letter = a original index = 1, new index = 6, letter = b original index = 2, new index = 7, letter = c .....
It works with range(len(sequence)),but the way over with enumerate is better(explain last).
from string import ascii_lowercase

alphabet = [a for a in ascii_lowercase]
increment = 5
for index in range(len(alphabet)):
    letter = alphabet[index]
    new_index = index + increment
    print(f'original index = {index}, new index = {new_index}, letter = {letter}')
Output:
original index = 0, new index = 5, letter = a original index = 1, new index = 6, letter = b original index = 2, new index = 7, letter = c .....

Using range(len(sequence)) is less ideal because it separates the index and value retrieval,
making the code less readable and more prone to off-by-one errors or indexing mistakes.
In contrast, enumerate combines the index and value retrieval,making the code more straightforward and less error-prone.
Reply


Messages In This Thread
RE: Why not use len(alist) in an iterator? - by snippsat - Jun-26-2024, 06:17 PM

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