Python program to merge two python dictionaries into one

x={“a”:1,“b”:2}
y={“c”:“hello”,“d”:5}
x.update(y)
print(x)

2 Likes

Correct. Keep it up and keep practicing

@sarithabhise27

Correct , keep it up.