Logo

Programming-Idioms

History of Idiom 7 > diff from v143 to v144

Edit summary for version 144 by programming-idioms.org:
[Python] Newer syntax

Version 143

2023-03-26, 09:18:18

Version 144

2023-09-14, 09:39:49

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
indices traverse traversal
Extra Keywords
indices 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
https://stackoverflow.com/a/522578/871134
Origin
https://stackoverflow.com/a/522578/871134