I have two lists of python dictionnaries :
l1 = [{"id":1, "name":"A"}, {"id":2, "name":"B"}]
l2 = [{"id":1, "full_name":"Alfred"}, {"id":2, "full_name":"Barbara"}]
My goal is to have a list as follow :
l3 = [{"id":1, "full_name":"Alfred", "name":"A"}, {"id":2, "full_name":"Barbara", "name":"B"}]
I think I could use nested loops to do this, but I'm sure it should be possible to do it in a better and more pythonic way.