Computer Science, asked by srsrivastava92291, 2 months ago

To merge 2 dictionaries named dict1
and dict2 what will be the correct
syntax
dict2.merge(dict1)
)
dict2.append(dict1)
O (
dict2.update(dict1)
dict2.add(dict1)​

Answers

Answered by gauravgujjar7989
1

Explanation:

dict2.update(dict1).

Similar questions