Skip to content

Instantly share code, notes, and snippets.

@zeffii
Forked from anonymous/enumerator_tester.py
Created April 14, 2013 11:57
Show Gist options
  • Select an option

  • Save zeffii/5382443 to your computer and use it in GitHub Desktop.

Select an option

Save zeffii/5382443 to your computer and use it in GitHub Desktop.
# enumerator_tester.py
a = [['one', 'two'], ['three', 'four'], ['five', 'size'], ['wen', 'aeto']]
for idx, (i,j) in enumerate(a):
print(i, j, idx)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment