I have the a list of dicts in python in the following format:
dict1 = [{'Name':'a', 'value':20},{'Name':'b', 'value':10},{'Name':'c', 'value':15}]
I want to output something like this:
dict2 = {'a':20, 'b':10, 'c':15 }
How to do it? Thanks in advance!