write a python program to merge two dictionaries
Answers
Answered by
0
Answer:
def Merge(dict1, dict2):
return(dict2.update(dict1))
Similar questions