I have an existing dictionary and I want to add a list of tuples into this dictionary.
Existing dictionary structure:
myD = {'key1': 123 , 'key2': 456}
List of tuples structure:
myL = [('fkey1',321),('fkey2',432),('fkey3',543)]
Expected dictionary after adding list of tuples
myD = {'key1': 123 ,'key2': 456 ,'fkey': 321 ,'fkey2': 432 ,'fkey3': 543}
How can I implement this in python?