Python 不定长参数(关键字传递)

视频版教程 Python3零基础7天入门实战视频教程

我们通过字典dict类型的 **kwargs 来实现,具体看下实例:

def test2(**kwargs):
    print(kwargs, type(kwargs))

test2(name="Jack", age=11)
test2()

运行输出:

{'name': 'Jack', 'age': 11} 
{} 

你可能感兴趣的:(Python,python)