“Gabungkan daftar kamus Python” Kode Jawaban

Kamus Gabungan Python

dict1 = {'color': 'blue', 'shape': 'square'}
dict2 = {'color': 'red', 'edges': 4}

dict1.update(dict2) #if a key exists in both, it takes the value of the second dict
# dict1 = {'color': 'red', 'shape': 'square', 'edges': 4}
# dict2 is left unchanged
MitroGr

Gabungkan daftar kamus Python

>>> from collections import ChainMap
>>> a = [{'a':1},{'b':2},{'c':1},{'d':2}]
>>> dict(ChainMap(*a))
{'b': 2, 'c': 1, 'a': 1, 'd': 2}
Nasty Narwhal

Jawaban yang mirip dengan “Gabungkan daftar kamus Python”

Pertanyaan yang mirip dengan “Gabungkan daftar kamus Python”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya