Python Dictionary Iteration

0%

What would be the output of the following code snippet?

Python
a_dict = {'color': 'blue', 'fruit': 'apple', 'pet': 'dog'}
for key in a_dict:
    print(key)

Select one:

Sorry! There has been an error processing your answer. Please try again.

Got feedback on this question?