Ejemplo 1: actualización de dict de Python
d = {1: "one", 2: "three"}
d1 = {2: "two"}
# updates the value of key 2
d.update(d1)
d1 = {3: "three"}
# adds element with key 3
d.update(d1)
# {1: 'one', 2: 'two', 3: 'three'}
Ejemplo 2: diccionario de actualización de Python
diction[element] = value
# if element not in diction, create new element
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)