-1
私は2つの辞書を持っています。それらの間を混ぜることなく自然に第3の辞書にコンテンツを追加したいと思います。2つの辞書のキーと値を混在させずに3番目の辞書に追加する方法はありますか?
a = {'life':'1','arts':'2'}
b = {'technology':'3', 'culture':'4'}
c = {} # here must be keys and values of the `a` and `b` dicts
を使用しようとすることができますか? – Johannes
https://docs.python.org/3/library/collections.html#collections.ChainMap –
'c.update(a); c.update(b) 'これはinplaceであり、' None'を返すhttps://docs.python.org/3/library/stdtypes.html#dict.update –