I have two variable a and b assigned some values in a list, merge those values as below
a = [{'test0': '-166.05043999999998'},
{'test1': '0.39523979999999925'},
{'test2': '0.8905380999999923'}]
b = [{'test3': '-168.05043999999998'},
{'test4': '1.39523979999999925'},
{'test5': '2.8905380999999923'}]
and I want to make it as
ab = [{'test0': '-166.05043999999998',
'test1': '0.39523979999999925',
'test2': '0.8905380999999923',
'test3': '-168.05043999999998',
'test4': '1.39523979999999925',
'test5': '2.8905380999999923'}]