“Python verschmelzen zwei Wörterbücher” Code-Antworten

Python merge Wörterbücher

# Python >= 3.5:
def merge_dictionaries(a, b):
   return {**a, **b}
  
# else:
def merge_dictionaries(a, b):
    c = a.copy()   # make a copy of a 
    c.update(b)    # modify keys and values of a with the b ones
    return c

a = { 'x': 1, 'y': 2}
b = { 'y': 3, 'z': 4}
print(merge_dictionaries(a, b)) 		# {'y': 3, 'x': 1, 'z': 4}
VasteMonde

Python merge Wörterbücher

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

Wie man zwei Wörterbücher in Python zusammenfasst

>>> x = {'a': 1, 'b': 2}
>>> y = {'b': 10, 'c': 11}
>>> z = {**x, **y} #In Python 3.5 or greater only
>>> print(z)
{'a': 1, 'b': 10, 'c': 11}
MrStonkus

Python schließen Sie sich DICT an

def mergeDict(dict1, dict2):
   ''' Merge dictionaries and keep values of common keys in list'''
   dict3 = {**dict1, **dict2}
   for key, value in dict3.items():
       if key in dict1 and key in dict2:
               dict3[key] = [value , dict1[key]]
 
   return dict3
 
# Merge dictionaries and add values of common keys in a list
dict3 = mergeDict(dict1, dict2)
 
print('Dictionary 3 :')
print(dict3)
rebellion

Zusammenführen zwei Wörterbücher

# merge two dictionaries
x = {'a': 1,'b':2}
y = {'d':3,'c':5}
z = {**x, **y}
print(z)					# {'a': 1, 'b': 2, 'd': 3, 'c': 5}
Impossible Impala

Python verschmelzen zwei Wörterbücher

# Python 3.9
z = x | y

# Python 3.5
z = {**x, **y}

# Python <= 3.4
def merge_two_dicts(x, y):
    z = x.copy()   # start with keys and values of x
    z.update(y)    # modifies z with keys and values of y
    return z

z = merge_two_dicts(x, y)
Intempestive Al Dente

Ähnliche Antworten wie “Python verschmelzen zwei Wörterbücher”

Fragen ähnlich wie “Python verschmelzen zwei Wörterbücher”

Weitere verwandte Antworten zu “Python verschmelzen zwei Wörterbücher” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen