dicts
combine_dicts(*dicts)
Combines multiple dictionaries into a single dictionary joining the values as a list for each key.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
*dicts |
Any
|
the dictionaries to be combined. |
()
|
Returns:
Type | Description |
---|---|
Dict[str, Any]
|
Dict[str, Any]: the combined dictionary. |