Skip to content

Instantly share code, notes, and snippets.

@ultrakain
Created March 31, 2017 11:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ultrakain/04db18065007b6cfd8af87539d1110a0 to your computer and use it in GitHub Desktop.
Save ultrakain/04db18065007b6cfd8af87539d1110a0 to your computer and use it in GitHub Desktop.
python iteration
# string
x = "Beautiful is better than ugly"
for c in x:
print(c)
# list
l = [1, 2, 3, 4, 5, 6, 7]
for item in l:
print(item)
# dict
d = {'name': 'yanggun', 'age': 21, 'address': 'busan'}
for item in d:
print(item)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment