Write a function to print merger of two dictionary
Topic: Write a function to print merger of two dictionary
Solution
def merge_dict(dict1: dict, dict2: dict): """ function to print merger of two dictionary """ final_dict = {**dict1, **dict2} print(final_dict)
List all Python Programs