How to keep only 2nd items of dictionary and preserve the same format(list of dictionaries) in the output?
a = [{'a1':10,'b1':9},{'d1':10,'c1':9}]
Expected output
e = [{'b1':9},{'c1':9}]
Code i tried:
e = [dict(b.items())[1] for a in e] #not getting o/p