show/hide this revision's text 2 Python 3+

variables in list comprehension (Python 3+) and generators are local:

>>> i = 0
>>> [i+1 for i in range(10)]
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
>>> i
0

but why exactly do you need this?

show/hide this revision's text 1

variables in list comprehension and generators are local:

>>> i = 0
>>> [i+1 for i in range(10)]
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
>>> i
0

but why exactly do you need this?