Is there an equivalent to python's `update` in `json`?
    
    
    a = {"name":"john", "age":44}
    b = {"age":30}
    a.update(b)
    
    
    Run

Reply via email to