Logo

Programming-Idioms

History of Idiom 7 > diff from v92 to v93

Edit summary for version 93 by programming-idioms.org:
[Python] More precise link (to the answer)

Version 92

2020-09-29, 12:21:17

Version 93

2020-10-06, 10:34:16

Idiom #7 Iterate over list indexes and values

Print each index i with its value x from an array-like collection items

Idiom #7 Iterate over list indexes and values

Print each index i with its value x from an array-like collection items

Variables
i,x,items
Variables
i,x,items
Extra Keywords
traverse traversal
Extra Keywords
traverse traversal
Code
for i, x in enumerate(items):
    print i, x
Code
for i, x in enumerate(items):
    print i, x
Doc URL
https://docs.python.org/3/library/functions.html#enumerate
Doc URL
https://docs.python.org/3/library/functions.html#enumerate
Origin
http://stackoverflow.com/questions/522563/accessing-the-index-in-python-for-loops
Origin
https://stackoverflow.com/a/522578/871134