I have a list of dictionary. I need to grow dictionary values under each keys as list in a loop (or any other way).
dl= [{'A':1, 'B':2}, {'A':3, 'B':4}, {'A':5, 'B':6}]
for d in dl:
?????
What I need is a dictionary like this:
{'A':[1,3,5], 'B': [2,4,6]}
I need a way without using pandas dataframe. Thanks a lot.