I have two dictionary:
a=
{
    "2001935072": {
        "WR": "48.9",
        "nickname": "rogs30541",
        "team": 2
    },
....
}
and
b=
{
    "2001935072": {
        "wtr": 816
    },
....
}
i've tried to merge them with both a.update(b) and a={**a, **b} but both gives this output when i print(a):
{
    "2001935072": {
        "wtr": 816
    },
....
}
which is basicly a=b, how to merge A and B so the output is
{
    "2001935072": {
        "WR": "48.9",
        "nickname": "rogs30541",
        "team": 2
        "wtr": 816
    },
....
}
 
     
     
    