How to merge keys and values of two dictionaries (overwriting values of the same key) in Python

1 Answer

0 votes
dic = {"aa": {"java"}, "bb": {"c", "c++"}, "cc": {"javascript"}}
dic2 = {"bb": {"c", "c++", "c#"}, "aa": {"php", "python"}}

dic.update(dic2)

print(dic)

 
'''
run:
 
{'aa': {'php', 'python'}, 'bb': {'c++', 'c#', 'c'}, 'cc': {'javascript'}}
 
'''

 



answered Dec 6, 2017 by avibootz

Related questions

4 answers 239 views
1 answer 188 views
3 answers 238 views
238 views asked Feb 19, 2019 by avibootz
1 answer 145 views
...