My code is
index = 0 for key in dataList[index]: print(dataList[index][key])
Seems to work fine for printing the values of dictionary k
You can easily do this:
for dict_item in dataList: for key in dict_item: print dict_item[key]
It will iterate over the list, and for each dictionary in the list, it will iterate over the keys and print its values.