Skip to content

Instantly share code, notes, and snippets.

@caruccio
Created September 24, 2012 15:04
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 caruccio/3776424 to your computer and use it in GitHub Desktop.
Save caruccio/3776424 to your computer and use it in GitHub Desktop.
What does 'pythonic' means?
for i, j in { 'a': 1, 'b': 2 }.iteritems():
print i, j
for i, j in [ ('a', 1), ('b', 2) ]:
print i, j
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment