Consider a dict object dico in Python, what is the correct statement to iterate over all its keys and values ?
dict
dico
for key, val in dico:
for key, val in dico.keys():
for key, val in dico.values():
for key, val in dico.items():