Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,900 questions

51,831 answers

573 users

How to create ChainMap for multiple dictionaries in Python

3 Answers

0 votes
import collections     

d1 = {'a': 'AA', 'c': 'CC', 'd': 'EE'}
d2 = {'b': 'BB', 'c': 'DD', 'f': 'GG'}     

cm = collections.ChainMap(d1, d2)     

print('a = {}'.format(cm['a']))     
print('b = {}'.format(cm['b']))     
print('c = {}'.format(cm['c']))    
print('d = {}'.format(cm['d']))  
print('f = {}'.format(cm['f']))  
 
 
      
'''
run:
  
a = AA
b = BB
c = CC
d = EE
f = GG
 
'''

 



answered Apr 30, 2019 by avibootz
edited Apr 30, 2019 by avibootz
0 votes
import collections     

d1 = {'a': 'AA', 'c': 'CC', 'd': 'EE'}
d2 = {'b': 'BB', 'c': 'DD', 'f': 'GG'}     

cm = collections.ChainMap(d1, d2)     

print('Keys = {}'.format(list(cm.keys())))     
print('Values = {}'.format(list(cm.values())))
 
 
      
'''
run:
  
Keys = ['d', 'a', 'f', 'c', 'b']
Values = ['EE', 'AA', 'GG', 'CC', 'BB']
 
'''

 



answered Apr 30, 2019 by avibootz
0 votes
import collections     

d1 = {'a': 'AA', 'c': 'CC', 'd': 'EE'}
d2 = {'b': 'BB', 'c': 'DD', 'f': 'GG'}     

cm = collections.ChainMap(d1, d2)     

for key, value in cm.items():         
    print('{} = {}'.format(key, value))
    
      
'''
run:
  
f = GG
b = BB
a = AA
d = EE
c = CC
 
'''

 



answered Apr 30, 2019 by avibootz
...