Skip to content

Instantly share code, notes, and snippets.

@joaomoreno
Created November 22, 2010 13:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joaomoreno/709958 to your computer and use it in GitHub Desktop.
Save joaomoreno/709958 to your computer and use it in GitHub Desktop.
list comprehensions environment mess
>>> 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