WAP to merge two dictionaries

d1={"a":1}
d2={"b":2}
d3=d1.update(d2)
print(d3)
2 Likes

@milindyadav98

Correct , keep it up.

1 Like