How to create new instance of ChainMap and add one more dictionary in Python

1 Answer

0 votes
import collections     
 
d1 = {'a': 'AA', 'b': '***', 'c': 'CC'}
d2 = {'b': 'BB', 'f': 'GG'}     
  
cm1 = collections.ChainMap(d1, d2)     
 
cm2 = cm1.new_child()     

print('cm1:', cm1)     
print('cm2:', cm2)     
print()

cm2['b'] = 'PYTHON'
     
print('cm1:', cm1)     
print('cm2:', cm2)
 
 
 
'''
run:
 
cm1: ChainMap({'a': 'AA', 'b': '***', 'c': 'CC'}, {'b': 'BB', 'f': 'GG'})
cm2: ChainMap({}, {'a': 'AA', 'b': '***', 'c': 'CC'}, {'b': 'BB', 'f': 'GG'})

cm1: ChainMap({'a': 'AA', 'b': '***', 'c': 'CC'}, {'b': 'BB', 'f': 'GG'})
cm2: ChainMap({'b': 'PYTHON'}, {'a': 'AA', 'b': '***', 'c': 'CC'}, {'b': 'BB', 'f': 'GG'})
 
'''

 



answered May 3, 2019 by avibootz

Related questions

1 answer 127 views
2 answers 184 views
1 answer 118 views
2 answers 163 views
5 answers 337 views
...