def test(**kwargs): print(kwargs) print(type(kwargs)) test(a=1,b=2)
结果:
{'a': 1, 'b': 2} <class 'dict'>