[PIPython] concatenare dizionari

Federico Nati federico.nati
Ven 19 Nov 2004 15:16:41 CET


posso concatenare le liste, per esempio
>>> [1, 2] + [3, 4]
[1, 2, 3, 4]

ma non i dizionari:

>>> {"a":1, "b":2}+{"c":3, "d":4}
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
TypeError: unsupported operand types for +: 'dict' and 'dict'

Esiste un modo per ottenere
{"a":1, "b":2, "c":3, "d":4}

facilmente a partire dai due dizionari separati?

grazie, ciao, Federico.



More information about the Python mailing list