Do Now 6.04
Type and run the following code in the interpreter
my_dictionary = { 'a': 1, 'b': 2, 'c': 3, 'd': 4, 'e': 5 } print(my_dictionary.keys())Write down what
keys()does. What type doeskeys()return?Write down how you might use a
forloop to go through and print the values ofmy_dictionary. Try your solution using the interpreter.