I hae a dictionary like this
dict1 = [('var1','aa'),('var2','bb')('var3','cc')]
I have another dictionary
dict2 = [('var2','22'),('var3','33'),('var5','23'),('var6','33'),('var7','23')]
What i want to do is that i to replace the contents of dict2
with the varibels in dict1
I mean so that final dict3 = dict2 = [('var2','bb'),('var3','cc'),('var5','23'),('var6','33'),('var7','23')]