Do Now 6.03
Type and run the following code in the interpreter:
list_dictionaries = { 'cat': [1, 3, 4], 'is': [1, 2, 3, 4] } print(list_dictionaries['cat'])Write down what type
list_dictionariesis, what type the keys are, and what type the values are.Write code so that the value of 'is' becomes
[1, 2, 3, 4, 5]