d = {1: "one", 2: "three"} d1 = {2: "two"} # updates the value of key 2 d.update(d1) #Output {1: 'one', 2: 'two'}