How to modified values of dictionaries and reflected the result in ChainMap in Python

1 Answer

0 votes
import collections     
 
d1 = {'a': 'AA', 'c': 'CC', 'd': 'EE'}
d2 = {'b': 'BB', 'c': 'DD', 'f': 'GG'}     
  
cm = collections.ChainMap(d1, d2)     
 
d1['AA'] = 'WWW'    
d2['DD'] = 'YYY'    
 
print(format(cm['AA']))
print(format(cm['DD']))
 
print(d1)
print(d2)
 
 
 
'''
run:
 
WWW
YYY
{'a': 'AA', 'c': 'CC', 'd': 'EE', 'AA': 'WWW'}
{'b': 'BB', 'c': 'DD', 'f': 'GG', 'DD': 'YYY'}
 
'''

 



answered May 2, 2019 by avibootz
edited May 3, 2019 by avibootz

Related questions

...