Created
November 22, 2010 13:14
-
-
Save joaomoreno/709958 to your computer and use it in GitHub Desktop.
list comprehensions environment mess
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> a = 1 | |
>>> print a | |
1 | |
>>> [a for a in range(10)] | |
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9] | |
>>> print a | |
9 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment