Created
November 3, 2016 04:26
-
-
Save bolerap/cf245eb17d152bd7dc0677902db2cfbe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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