[python] dictのマージ August 04, 2020 update()でdictをマージすることができる。 d1 = {'a':1 , 'b':2} d2 = {'c':3 , 'd':4} d1.update(d2) print(d1) # {'a': 1, 'b': 2, 'c': 3, 'd': 4} python