-
- dict merge ?dict? ?dict? ...
Returns the merged
dictionary obtained by combining all the
dict arguments, in sequence. Values from duplicate keys are used by preferring the value that comes last.
Equivalent to this form using
dict create, though more efficient:
dict create {*}dict {*}dict ...