Python Itrer Dictionnaire
>>> for key in d:
... print(key)
...
a
b
c
Average Ape
>>> for key in d:
... print(key)
...
a
b
c
>>> d = {'a':1,'b':2,'c':3}
>>> type(d)
<class 'dict'>