How can you iterate over the keys and values of a dictionary using a for loop?
for key, value in dictionary.items():
for key in dictionary.keys():
for key in dictionary:
for value in dictionary.values():
This question is part of this quiz :
Python for loop quiz