dict = {'county': ['Cochice', 'Pima', 'Santa Cruz', 'Maricopa', 'Yuma'], 'year': [2012, 2012, 2013, 2014, 2014], 'fireReports': [4, 24, 31, 2, 3]} # Create a list to place the dictionary keys in dictionaryKeys = [] # For each key in the dictionary's keys, for key in dict.keys(): # add the key to dictionaryKeys dictionaryKeys.append(key) # View the dictionaryKeys list dictionaryKeys # Create a list to place the dictionary values in dictionaryValues = [] # For each key in the dictionary's Values, for x in dict.values(): # add the key to dictionaryValues dictionaryValues.append(x) # View the dictionaryValues list dictionaryValues