Skip to content

Instantly share code, notes, and snippets.

@bolerap
Created November 3, 2016 04:26
Show Gist options
  • Save bolerap/cf245eb17d152bd7dc0677902db2cfbe to your computer and use it in GitHub Desktop.
Save bolerap/cf245eb17d152bd7dc0677902db2cfbe to your computer and use it in GitHub Desktop.
# list
a = ['Hello', "World", 'Python']
for i, v in enumerate(a):
print(i, v)
# Dictionary
a = {'name': 'Peter', 'age': 25}
for k, v in a.items(): # .iteritems() with python 2
print(k, v)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment