Python 3.5+中的多个kwarg集合
# Python 3.5+允许传递多个集合关键字参数(“kwargs”)到一个#函数在单个调用中使用“**”语法
>>> def process_data(a, b, c, d):
>>> print(a, b, c, d)
>>> x = {'a': 1, 'b': 2}
>>> y = {'c': 3, 'd': 4}
>>> process_data(**x, **y)
1 2 3 4
>>> process_data(**x, c=23, d=42)
1 2 23 42