Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nunenuh/c0eb00273f068bac15cdc98d5f33e74c to your computer and use it in GitHub Desktop.
Save nunenuh/c0eb00273f068bac15cdc98d5f33e74c to your computer and use it in GitHub Desktop.
Idiomatic Python
# Looping Over Collection with Indice Forward
colors = ["red", "green", "blue"]
# bad
for i in range(len(colors)):
print(i,'--',colors[i])
# good
for i, color in enumerate(colors):
print(i, '--', color)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment