Skip to content

Instantly share code, notes, and snippets.

@Linus-Albertus
Created June 5, 2019 02:01
Show Gist options
  • Save Linus-Albertus/35adb4065895909dfbd5725cbe5b1307 to your computer and use it in GitHub Desktop.
Save Linus-Albertus/35adb4065895909dfbd5725cbe5b1307 to your computer and use it in GitHub Desktop.
[iterate dictionary] Iterate a Python dict
dictionary = {'a': 1, 'b': 2, 'c': 3}
for k, v in dictionary.items():
print(k, v)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment