Tuesday, 8 May 2018

python - Accessing the index in 'for' loops?




How do I access the index in a for loop like the following?



ints = [8, 23, 45, 12, 78]
for i in ints:
print('item #{} = {}'.format(???, i))


I want to get this output:




item #1 = 8
item #2 = 23
item #3 = 45
item #4 = 12
item #5 = 78


When I loop through it using a for loop, how do I access the loop index, from 1 to 5 in this case?


Answer



Using an additional state variable, such as an index variable (which you would normally use in languages such as C or PHP), is considered non-pythonic.




The better option is to use the built-in function enumerate(), available in both Python 2 and 3:



for idx, val in enumerate(ints):
print(idx, val)


Check out PEP 279 for more.


No comments:

Post a Comment

casting - Why wasn't Tobey Maguire in The Amazing Spider-Man? - Movies & TV

In the Spider-Man franchise, Tobey Maguire is an outstanding performer as a Spider-Man and also reprised his role in the sequels Spider-Man...