Skip to content

Instantly share code, notes, and snippets.

@alexanderawwagner
Created March 5, 2021 13:15
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 alexanderawwagner/3c84315e38f4f5df41f7b10e5c749278 to your computer and use it in GitHub Desktop.
Save alexanderawwagner/3c84315e38f4f5df41f7b10e5c749278 to your computer and use it in GitHub Desktop.
Medium_04_Python Course-Part 04- Control Structures
dic = {'a': 1, 'b': 2, 'c': 3}
print(type(dic))
for i in dic:
print(i)
for i in dic.keys():
print(i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment