Appearance
合并多个字典
from usepy import merge_dicts
*dicts
>>> merge_dicts({'a': 1, 'b': 2}, {'c': 3}, {'d': 4}) {'a': 1, 'b': 2, 'c': 3, 'd': 4}