Skip to content

Instantly share code, notes, and snippets.

@deontologician
Created November 19, 2011 14:53
Show Gist options
  • Save deontologician/1378914 to your computer and use it in GitHub Desktop.
Save deontologician/1378914 to your computer and use it in GitHub Desktop.
Enumerate example
my_list = ['a','b','c']
for index, value in enumerate(my_list):
print index, value
# This will print:
# 0 a
# 1 b
# 2 c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment